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