NotificationData constructor

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

Creates a notification data instance

Implementation

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