Converting JSON to Dart Classes

Поділитися
Вставка
  • Опубліковано 5 січ 2025

КОМЕНТАРІ • 25

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

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

  • @VAWAV
    @VAWAV 4 роки тому +3

    Best flutter and dart Chanel keep it up

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

    Thorough tutorial Thanks Man

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

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

  • @aritrasanyal1485
    @aritrasanyal1485 6 місяців тому

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

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

    hey, this one's the best explanation. Thanks

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

    Great explanation, thanks for share buddy

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

    thank you so much! keep at it!

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

    Why use a factory constructor? Sorry if silly question

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

      wondering this too... did you find out?

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

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

  • @AhmadRifai-ey4uo
    @AhmadRifai-ey4uo Рік тому

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

  • @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 ?

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

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

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

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

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

    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 _

  • @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

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

    nice video

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

    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 3 роки тому

    You have few comments yet you don’t reply lol