exportModelFromJson function
Converts a JSON string into an ExportModel object.
This function decodes the given JSON string and uses the fromJson
constructor
of the ExportModel class to create an instance.
Parameters:
str
- A JSON string representation of an ExportModel object.
Returns: An instance of ExportModel populated with data from the given JSON string.
Implementation
ExportModel exportModelFromJson(String str) =>
ExportModel.fromJson(json.decode(str));