toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final detectedLanguageCode = this.detectedLanguageCode;
final romanizedText = this.romanizedText;
return {
'detectedLanguageCode': ?detectedLanguageCode,
'romanizedText': ?romanizedText,
};
}