PushNotificationReceived constructor

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

Push notification received state

Implementation

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