PushNotificationOpened constructor

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

Push notification opened state

Implementation

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