toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (customVoice != null) 'customVoice': customVoice!,
  if (languageCode != null) 'languageCode': languageCode!,
  if (modelName != null) 'modelName': modelName!,
  if (name != null) 'name': name!,
  if (ssmlGender != null) 'ssmlGender': ssmlGender!,
  if (voiceClone != null) 'voiceClone': voiceClone!,
};