CheckoutResponseModel constructor

CheckoutResponseModel({
  1. String? checkoutUrl,
  2. num? amount,
  3. String? currency,
  4. String? spOrderId,
  5. String? customerOrderId,
  6. String? customerName,
  7. String? customerAddress,
  8. String? customerCity,
  9. String? customerPhone,
  10. String? customerEmail,
  11. String? clientIp,
  12. String? intent,
  13. String? transactionStatus,
})

Implementation

CheckoutResponseModel(
    {this.checkoutUrl,
    this.amount,
    this.currency,
    this.spOrderId,
    this.customerOrderId,
    this.customerName,
    this.customerAddress,
    this.customerCity,
    this.customerPhone,
    this.customerEmail,
    this.clientIp,
    this.intent,
    this.transactionStatus});