ActiveNotification constructor

const ActiveNotification({
  1. int? id,
  2. String? groupKey,
  3. String? channelId,
  4. String? title,
  5. String? body,
  6. String? payload,
  7. String? tag,
})

Constructs an instance of ActiveNotification.

Implementation

const ActiveNotification({
  this.id,
  this.groupKey,
  this.channelId,
  this.title,
  this.body,
  this.payload,
  this.tag,
});