MFCardInfo.fromJson constructor

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

Implementation

MFCardInfo.fromJson(Map<String, dynamic> json) {
  number = json['Number'];
  expiryMonth = json['ExpiryMonth'];
  expiryYear = json['ExpiryYear'];
  brand = json['Brand'];
  issuer = json['Issuer'];
}