appLaunchedFromMissedCall static method

Future<bool?> appLaunchedFromMissedCall()

Checks if the app was launched from a missed call notification.

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

Returns a Future that completes with a bool value indicating whether the app was launched from a missed call notification:

  • true if the app was launched from a missed call notification.
  • false if the app was not launched from a missed call notification.

Implementation

static Future<bool?> appLaunchedFromMissedCall() async {
  return FlyChatFlutterPlatform.instance.appLaunchedFromMissedCall();
}