VoiceRegion constructor

VoiceRegion({
  1. required String id,
  2. required String name,
  3. required bool vip,
  4. required bool optimal,
  5. required bool deprecated,
  6. required bool custom,
})

Implementation

VoiceRegion({
  required this.id,
  required this.name,
  required this.vip,
  required this.optimal,
  required this.deprecated,
  required this.custom,
});