TranslatedString.fromJson constructor

TranslatedString.fromJson(
  1. Map json_
)

Implementation

TranslatedString.fromJson(core.Map json_)
    : this(
        kind: json_['kind'] as core.String?,
        language: json_['language'] as core.String?,
        value: json_['value'] as core.String?,
      );