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