AddCardRequest.fromJson constructor
Implementation
factory AddCardRequest.fromJson(Map<String, dynamic> json) => AddCardRequest(
dealerCustomerId: json["DealerCustomerId"],
customerCode: json["CustomerCode"],
cardHolderFullName: json["CardHolderFullName"],
cardNumber: json["CardNumber"],
expMonth: json["ExpMonth"],
expYear: json["ExpYear"],
cardName: json["CardName"],
);