DidReceivedNotificationEvent constructor

DidReceivedNotificationEvent({
  1. required String title,
  2. required String body,
  3. required PushNotificationPayload payload,
  4. String? linkMobile,
})

Push notification event when a notification is received

Implementation

DidReceivedNotificationEvent({
  required this.title,
  required this.body,
  required this.payload,
  this.linkMobile,
});