LocalizedString.fromJson constructor

LocalizedString.fromJson(
  1. Map<String, dynamic> json
)

Implementation

LocalizedString.fromJson(Map<String, dynamic> json)
    : this.id = Convert.toStr(json['id'], ''),
      this.translations = _parseTranslations(json);