notificationTapWhichLaunchedAppFromTerminated property

Future<Map<String?, Object?>?> notificationTapWhichLaunchedAppFromTerminated

Get the notification tapped by the user when the app was in the terminated state. This does not include the case where a push notification is received when the app is in the background but still running.

The future completes with null if the app was not launched by a user tapping a notification.

Implementation

Future<Map<String?, Object?>?>
    get notificationTapWhichLaunchedAppFromTerminated async {
  return await _pushHostApi.getNotificationTapWhichLaunchedTerminatedApp();
}