Voice constructor

Voice({
  1. List<String>? languageCodes,
  2. String? name,
  3. int? naturalSampleRateHertz,
  4. String? ssmlGender,
})

Implementation

Voice({
  this.languageCodes,
  this.name,
  this.naturalSampleRateHertz,
  this.ssmlGender,
});