TranslationLanguageEntry constructor

const TranslationLanguageEntry({
  1. required String code,
  2. String? nickname,
  3. TranslationVoiceConfig? voiceConfig,
})

Implementation

const TranslationLanguageEntry({
  required this.code,
  this.nickname,
  this.voiceConfig,
});