Notification constructor

Notification({
  1. String? extra,
  2. int? client_id,
  3. int32? id,
  4. int32? date,
  5. Bool? is_silent,
  6. NotificationType? type,
})

Implementation

Notification({
  super.extra,
  super.client_id,
  this.id,
  this.date,
  this.is_silent,
  this.type,
});