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