Romanization.fromJson constructor

Romanization.fromJson(
  1. Map json_
)

Implementation

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