You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is an interesting idea. Are you thinking of just being able to serialise the models to JSON, or also thinking of de-serialising JSON back into the models?
Flutter doesn't support Reflection like Java. So you cannot see any framework like GSON.
Actually, Dart language supports mirror, which is similar to Reflection, but this feature was ignored by Flutter
You're right, Flutter doesn't support reflection but there are ways this request can be achieved. You can serialise/deserialise objects to/from JSON manually (my preferred approach) or via code gen using a package such as json_serializable.
I want to pass from backend to frontend, and it would be easier if they would serialize to json.
The text was updated successfully, but these errors were encountered: