toJson method
Implementation
Map<String, dynamic> toJson() {
final json = <String, dynamic>{};
if (this.enableTranscription != null) {
json[r'enable_transcription'] = this.enableTranscription;
} else {
json[r'enable_transcription'] = null;
}
if (this.externalStorage != null) {
json[r'external_storage'] = this.externalStorage;
} else {
json[r'external_storage'] = null;
}
if (this.language != null) {
json[r'language'] = this.language;
} else {
json[r'language'] = null;
}
return json;
}