MirrorflyNotificationAppLaunchDetails.fromJson constructor

MirrorflyNotificationAppLaunchDetails.fromJson(
  1. Map<String, dynamic> json
)

Converts a JSON object into a MirrorflyNotificationAppLaunchDetails instance.

Implementation

factory MirrorflyNotificationAppLaunchDetails.fromJson(
        Map<String, dynamic> json) =>
    MirrorflyNotificationAppLaunchDetails(
      type: json["type"],
      value: json["value"],
    );