NotificationArgs constructor

NotificationArgs({
  1. String? title,
  2. String? text,
  3. NotificationPayload? payload,
})

Implementation

NotificationArgs({
  this.title,
  this.text,
  this.payload,
});