PaymentPayorderResult.fromJson constructor

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

Implementation

PaymentPayorderResult.fromJson(Map<String, dynamic> json) {
  stripeId = json["stripeId"];
  stripeClientSecret = json["stripeClientSecret"];
  stripeStatus = json["stripeStatus"];
  price = json["price"];
  currency = json["currency"];
  subUnit = json["subUnit"];
}