VoiceInfo constructor

const VoiceInfo({
  1. required String id,
  2. required String name,
  3. String? description,
  4. String? category,
  5. String? gender,
  6. String? accent,
  7. String? previewUrl,
})

Implementation

const VoiceInfo({
  required this.id,
  required this.name,
  this.description,
  this.category,
  this.gender,
  this.accent,
  this.previewUrl,
});