exportModelFromJson function
Converts a JSON string into an ExportModel object.
This function decodes the provided JSON string into a map, and then uses the ExportModel.fromJson factory constructor to create an ExportModel object.
str
: The JSON string to be decoded.
Returns an ExportModel object.
Implementation
ExportModel exportModelFromJson(String str) =>
ExportModel.fromJson(json.decode(str));