CustomerPaymentRequest.fromJson constructor

CustomerPaymentRequest.fromJson(
  1. dynamic json
)

Implementation

CustomerPaymentRequest.fromJson(dynamic json) {
  cardToken = json['card_token'];
  appId = json['app_id'];
  amount = json['amount'];
  currency = json['currency'];
}