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 ?
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 _
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": [] } }, }
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
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
@@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.
Just in time that I got stuck with nested object in dart class. Glad I found your tutorial. Thanks for sharing
Best flutter and dart Chanel keep it up
Thorough tutorial Thanks Man
Awesome tutorial. It explains a lot about this complicated (for me anyway) topic. Thank you for sharing!
Thanks Bleyl Dev for this video, was kinda stuck with json_serializable unable to decode and all the instances were null for some reason
hey, this one's the best explanation. Thanks
Great explanation, thanks for share buddy
thank you so much! keep at it!
Why use a factory constructor? Sorry if silly question
wondering this too... did you find out?
why are you using the toString() method when printing?
plz show how to format number from API in datacell dart with thousand separator
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 ?
What if you have more than one coin.... how to store that data in a list of objects
How to Fetch Subcollecation in New FirebaseFirestore in Flutter App Pls help
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 _
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": []
}
},
}
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
nice video
Thanks!
hello world, did you know how to convert hash value (password) to string in dart?
always receving null value
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
@@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.
You have few comments yet you don’t reply lol