AddCardRequest.fromJson constructor

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

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"],
);