NotificationSound constructor

NotificationSound({
  1. String? extra,
  2. int? client_id,
  3. int64? id,
  4. int32? duration,
  5. int32? date,
  6. string? title,
  7. string? data,
  8. File? sound,
})

Implementation

NotificationSound({
  super.extra,
  super.client_id,
  this.id,
  this.duration,
  this.date,
  this.title,
  this.data,
  this.sound,
});