NotificationPayload constructor

NotificationPayload({
  1. String? id,
  2. String? rid,
  3. NotificationUser? sender,
  4. String? type,
  5. NotificationMessage? message,
})

Implementation

NotificationPayload({
  this.id,
  this.rid,
  this.sender,
  this.type,
  this.message,
});