GetCurrenciesModel.fromJson constructor
Implementation
factory GetCurrenciesModel.fromJson(Map<String, dynamic> json) =>
GetCurrenciesModel(
status: json["status"],
message: json["message"],
items: List<Item>.from(json["items"].map((x) => Item.fromJson(x))),
);