Converting JSON to Dart Classes

Поділитися
Вставка
  • Опубліковано 10 лис 2020
  • This tutorial shows you how to convert complex JSON response objects into a class structure in dart. We break down some of the most common examples of converting JSON to class structure as well as how to deal with nested class structures.
    For more weekly Flutter content be sure to Subscribe to the Channel!
    If you have any questions or are needing help with your Flutter project, join the Bleyl Dev discord and connect with other Flutter developers to help answer your questions!
    Medium Article: / converting-json-into-c...
    ✅ Discord: / discord
    ✅ Twitter: / bleyldev
    ✅ Facebook: / bleyldev
    ✅ Medium: / bleyldev
  • Наука та технологія

КОМЕНТАРІ • 25

  • @kennyn.8233
    @kennyn.8233 2 роки тому +1

    Just in time that I got stuck with nested object in dart class. Glad I found your tutorial. Thanks for sharing

  • @Machiuka
    @Machiuka Рік тому

    Awesome tutorial. It explains a lot about this complicated (for me anyway) topic. Thank you for sharing!

  • @anmolbindra1
    @anmolbindra1 3 роки тому +1

    Thorough tutorial Thanks Man

  • @mundocustom1485
    @mundocustom1485 2 роки тому +1

    Great explanation, thanks for share buddy

  • @TGBPlayso
    @TGBPlayso 2 роки тому +1

    thank you so much! keep at it!

  • @ItsLarry
    @ItsLarry 3 роки тому +3

    Best flutter and dart Chanel keep it up

  • @AshutoshKumar-jl5vu
    @AshutoshKumar-jl5vu Рік тому

    hey, this one's the best explanation. Thanks

  • @aritrasanyal1485
    @aritrasanyal1485 Місяць тому

    Thanks Bleyl Dev for this video, was kinda stuck with json_serializable unable to decode and all the instances were null for some reason

  • @andrevini8099
    @andrevini8099 3 роки тому

    I dont now why, when I use a jsonDecode, instead of receiving a Map I recieve a List, and I dont know what to do with it, anyone know why and what to do ?

  • @StarBattle08
    @StarBattle08 3 роки тому

    why are you using the toString() method when printing?

  • @tameflame1229
    @tameflame1229 3 роки тому +3

    Why use a factory constructor? Sorry if silly question

    • @lukas7338
      @lukas7338 Рік тому

      wondering this too... did you find out?

  • @aakashchandrakar6359
    @aakashchandrakar6359 3 роки тому

    How to Fetch Subcollecation in New FirebaseFirestore in Flutter App Pls help

  • @patricksingrin2788
    @patricksingrin2788 3 роки тому

    Thanks for the nice tutorial. Everything worked well for me until I tried another json. I’m trying to get the values for ‚projectName‘ & ‚clientName‘. I get an error back:
    Error: Expected a value of type 'Map', but got one of type 'List'
    The class looks like this:
    ---
    import 'package:portfolio_web/model/fields_data.dart';
    class ItemsData {
    final FieldsData fieldsdata;
    ItemsData({this.fieldsdata});
    factory ItemsData.fromJson(Map json) {
    return ItemsData(
    fieldsdata: FieldsData.fromjson(json['items']),
    );
    }
    }
    ---
    The FieldsData class looks basically the same.
    My guess is it’s because of the ‚items‘ structure. Sadly I couldn’t figure out how to solve it. I know it's probably hard to troubleshoot random code snippets but maybe you have an idea or can give me a hint. I would appreciate it.
    My json basically looks like this:
    {
    "sys": {
    "type": "Array"
    },
    "total": 11,
    "skip": 0,
    "limit": 100,
    "items": [
    {},
    {
    "sys": {},
    "fields": {
    "projectName": "Hello World!",
    "clientName": „World Inc“,
    "projectRoles": []
    }
    },
    }

    • @patricksingrin2788
      @patricksingrin2788 3 роки тому

      I actually found a solution. I used a if-loop to process each element of the array of objects and added them to the final list:
      List list = new List.empty(growable: true);
      for(int i=0; i

  • @BillBrutzman
    @BillBrutzman 2 роки тому

    Thanks. Helpful but _ I have json from API from SQL _ several records _ I am trying to inject into a Flutter dataTable. A single data element helps but _

  • @memechallenge1161
    @memechallenge1161 2 роки тому

    What if you have more than one coin.... how to store that data in a list of objects

  • @AhmadRifai-ey4uo
    @AhmadRifai-ey4uo 6 місяців тому

    plz show how to format number from API in datacell dart with thousand separator

  • @alfianrudiyanto7772
    @alfianrudiyanto7772 2 роки тому +1

    nice video

  • @achmadirfanda
    @achmadirfanda Рік тому

    hello world, did you know how to convert hash value (password) to string in dart?

  • @szyszak9424
    @szyszak9424 Рік тому

    always receving null value

    • @BleylDev
      @BleylDev  Рік тому

      Sorry, this video is like 3 years outdated now if you didn’t see the time stamp…
      I’d recommend just asking whatever issue you have to chatgpt if this doesn’t work for you

    • @szyszak9424
      @szyszak9424 Рік тому

      @@BleylDev i make it work. I was using rest API firebase and it generated special indentificators, after I looped trhough them and assign only values it works.

  • @memechallenge1161
    @memechallenge1161 2 роки тому

    You have few comments yet you don’t reply lol