PaymentRequest.fromJson constructor
Implementation
PaymentRequest.fromJson(Map<String, dynamic> json) {
amount = json["amount"];
currencyCode = json["currencyCode"];
redirectUri = json["redirectUri"];
description = json["description"];
paymentMethodType = json["paymentMethodType"];
customer = json["customer"];
customerGid = json["customerGid"];
notificationType = json["notificationType"];
expiresAt = json["expiresAt"];
}