Romanization.fromJson constructor
      
      Romanization.fromJson(
    
    
- Map json_
Implementation
Romanization.fromJson(core.Map json_)
    : this(
        detectedLanguageCode: json_.containsKey('detectedLanguageCode')
            ? json_['detectedLanguageCode'] as core.String
            : null,
        romanizedText: json_.containsKey('romanizedText')
            ? json_['romanizedText'] as core.String
            : null,
      );