PushNotificationMessage constructor

const PushNotificationMessage({
  1. String? title,
  2. String? body,
  3. String? imageUrl,
  4. String? deeplinkUrl,
  5. String? goToUrl,
  6. FcmPlatformOptions? fcmOptions,
  7. ApnsPlatformOptions? apnsOptions,
  8. Map<String, Object?> data = const {},
})

The Push Notification message that represents both the FCM and APNS Native notification types.

Implementation

const PushNotificationMessage({
  this.title,
  this.body,
  this.imageUrl,
  this.deeplinkUrl,
  this.goToUrl,
  this.fcmOptions,
  this.apnsOptions,
  this.data = const {},
});