ViewCardResModel.fromJson constructor
Implementation
ViewCardResModel.fromJson(Map<String, dynamic> json) {
responseCode = json['Response_Code'];
message = json['Message'];
ExpDate = json['ExpDate'];
EncCardNumber = json['EncCardNumber'];
CVV = json['CVV'];
// if (json['Info'] != null) {
// info = <Null>[];
// json['Info'].forEach((v) {
// info!.add(new Null.fromJson(v));
// });
// }
}