VoiceModel constructor

VoiceModel({
  1. required DateTime createdAt,
  2. required String slug,
  3. required String downloadUrl,
  4. required int sizeMb,
  5. required String fileName,
  6. bool isDownloaded = false,
})

Implementation

VoiceModel({
  required this.createdAt,
  required this.slug,
  required this.downloadUrl,
  required this.sizeMb,
  required this.fileName,
  this.isDownloaded = false,
});