PushNotificationOpened.fromFields constructor
PushNotificationOpened.fromFields({
- required String title,
- required String body,
- required PushNotificationPayload payload,
- String? linkMobile,
Creates an opened state from individual notification fields
Implementation
factory PushNotificationOpened.fromFields({
required String title,
required String body,
required PushNotificationPayload payload,
String? linkMobile,
}) {
return PushNotificationOpened(
data: NotificationData(
title: title,
body: body,
payload: payload,
linkMobile: linkMobile,
),
);
}