GoogleVoiceInfo constructor

const GoogleVoiceInfo({
  1. required String name,
  2. required String description,
  3. String? category,
  4. bool supportsMultiSpeaker = true,
})

Implementation

const GoogleVoiceInfo({
  required this.name,
  required this.description,
  this.category,
  this.supportsMultiSpeaker = true,
});