NotificationSound constructor

NotificationSound({
  1. required int id,
  2. required int duration,
  3. required int date,
  4. required String title,
  5. required String data,
  6. File? sound,
})

Implementation

NotificationSound({
  required this.id,
  required this.duration,
  required this.date,
  required this.title,
  required this.data,
  this.sound,
});