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