graphql_flutter return LazyCacheMap, built_value deserializeWith JSON String, how to make them work together.
- I use
graphql_flutterto fetch data, and response give the result data asLazyCacheMap. - And using
built_valuefor data model & data serialization, but sincedeserializeWithworking withJSON String.
What's the best way to work with them together ?
- Should I just convert
LazyCacheMap's data of toStringand calldeserializeWith? - should I use other serialization pubs ?