getAppLaunchedDetails static method

Future<MirrorflyNotificationAppLaunchDetails?> getAppLaunchedDetails()

Checks if the app was launched from a Mirrorfly notification.

This static method asynchronously checks if the app was launched from a mirrorfly notification. It delegates the task to the underlying platform implementation.

Returns a Future that completes with a MirrorflyNotificationAppLaunchDetails value of the app was launched from a mirrorfly notification:

Implementation

static Future<MirrorflyNotificationAppLaunchDetails?>
    getAppLaunchedDetails() async {
  return FlyChatFlutterPlatform.instance.getAppLaunchedDetails();
}