toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final json = <String, dynamic>{};
  if (this.transcriptionExternalStorage != null) {
    json[r'transcription_external_storage'] = this.transcriptionExternalStorage;
  } else {
    json[r'transcription_external_storage'] = null;
  }
  return json;
}