ChargeCardResponseCard.fromJson constructor

ChargeCardResponseCard.fromJson(
  1. Map<String, dynamic> json
)

Implementation

ChargeCardResponseCard.fromJson(Map<String, dynamic> json) {
  first6digits = json['first_6digits'];
  last4digits = json['last_4digits'];
  issuer = json['issuer'];
  country = json['country'];
  type = json['type'];
  expiry = json['expiry'];
}