NotificationPayload constructor

NotificationPayload({
  1. String? title,
  2. String? body,
  3. String? cta,
  4. String? embed,
  5. NotificationPayloadMeta? meta,
})

Implementation

NotificationPayload({
  this.title,
  this.body,
  this.cta,
  this.embed,
  this.meta,
});