TranslationElement.fromJson constructor
Implementation
factory TranslationElement.fromJson({required Map<String, dynamic> json}) =>
TranslationElement(
type: TranslationElementType.values.byName(json['type'] as String),
value: json['value'] as String,
);