fromJson static method

LanguageData fromJson(
  1. String json
)

Convert the JSON back to the LanguageData

Implementation

static LanguageData fromJson(String json) {
  return fromMap(jsonDecode(json));
}