factory Bank.fromJson(Map<String, dynamic> json) { return Bank( bankCode: json['bankCode'].toString(), bankName: json['bankName'], ); }