onClickedInBackground method

void onClickedInBackground(
  1. NotificationHandler onClicked
)

when app in background

Implementation

void onClickedInBackground(NotificationHandler onClicked) {
  FirebaseMessaging.onMessageOpenedApp.listen((RemoteMessage message) {
    onClicked(message);
  });
}