LocalizedText.fromJson constructor

LocalizedText.fromJson(
  1. Map json_
)

Implementation

LocalizedText.fromJson(core.Map json_)
  : this(
      language: json_['language'] as core.String?,
      text: json_['text'] as core.String?,
    );