RomanizeTextResponse.fromJson constructor
RomanizeTextResponse.fromJson(
- Map json_
Implementation
RomanizeTextResponse.fromJson(core.Map json_)
: this(
romanizations: (json_['romanizations'] as core.List?)
?.map((value) => Romanization.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList(),
);