Hello there I am creating an application in Flutter and I am receiving JSON response from the API and I know that we need to parse the response to use in the Flutter app but I found that if we use the normal way as:
jsonData['key']
to get and show the data because this way you can handle any kind of response easily but when I am using the models way then I am facing a lot of issues in which the data structure and data types included.
and I think the model only provides an object structure in which you can access data as an object way like jsonData.key
instead of the jsonData['key']
this is only my thinking you can correct me if I am wrong here.
I just want to know that if I am using a non-model way then will it affect my app or not?