ActiveNotification constructor

const ActiveNotification(
  1. int id,
  2. String? channelId,
  3. String? title,
  4. String? body,
)

Constructs an instance of ActiveNotification.

Implementation

const ActiveNotification(
  this.id,
  this.channelId,
  this.title,
  this.body,
);