I have data response with api and i can't map it to List but it return users null, i think is not working because method fromJson
Thanks for any answer
I have data response with api and i can't map it to List but it return users null, i think is not working because method fromJson
Thanks for any answer
Copyright © 2021 Jogjafile Inc.
Could you further specify what it is that you get as a result? Is the whole list full of null? Or are some of the objects' fields null?
Here is what I believe is an error:
You are saying:
But your json doesn't have a 'ten' field, so it will be null. What you are most likely looking for is the if-null operator:
which will assign
''
if the json field is null.