mirrorflyNotificationAppLaunchDetailsToJson function

String mirrorflyNotificationAppLaunchDetailsToJson(
  1. MirrorflyNotificationAppLaunchDetails data
)

Converts a MirrorflyNotificationAppLaunchDetails object into a JSON string.

This function takes a MirrorflyNotificationAppLaunchDetails object, converts it into a map using the toJson method, and then encodes this map as a JSON string.

Parameters: data - The MirrorflyNotificationAppLaunchDetails object to be converted into a JSON string.

Returns: A JSON string representation of the MirrorflyNotificationAppLaunchDetails object.

Implementation

String mirrorflyNotificationAppLaunchDetailsToJson(
        MirrorflyNotificationAppLaunchDetails data) =>
    json.encode(data.toJson());