getNotificationAppLaunchDetails method
Returns info on if a notification had been used to launch the application.
Implementation
@override
Future<NotificationAppLaunchDetails?>
getNotificationAppLaunchDetails() async {
final Map<dynamic, dynamic>? result =
await _channel.invokeMethod('getNotificationAppLaunchDetails');
final Map<dynamic, dynamic>? notificationResponse =
result != null && result.containsKey('notificationResponse')
? result['notificationResponse']
: null;
return result != null
? NotificationAppLaunchDetails(
result['notificationLaunchedApp'],
notificationResponse: notificationResponse == null
? null
: NotificationResponse(
id: notificationResponse['notificationId'],
actionId: notificationResponse['actionId'],
input: notificationResponse['input'],
notificationResponseType: NotificationResponseType.values[
notificationResponse['notificationResponseType']],
payload: notificationResponse.containsKey('payload')
? notificationResponse['payload']
: null,
),
)
: null;
}