Translation.fromJson constructor
Implementation
factory Translation.fromJson(Map<String, dynamic> json) => Translation(
id: json["id"],
currencyId: json["currency_id"],
locale: json["locale"],
name: json["name"],
plural: json["plural"],
);