PaymentRequest.fromJson constructor

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

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"];
}