UserRequest constructor

UserRequest({
  1. String? username,
  2. bool? isStaging,
  3. String? password,
  4. String? secret,
  5. String? merchantId,
  6. String? protoDomain,
  7. String? fname,
  8. String? lname,
  9. String? email,
  10. String? phone,
  11. String? fulladdress,
  12. String? city,
  13. String? state,
  14. String? country,
  15. String? pincode,
  16. String? amount,
  17. String? orderid,
  18. String? currency,
  19. String? isCurrency,
  20. String? chMode,
  21. String? customVar,
  22. String? txnSubtype,
  23. String? wallet,
  24. String? successUrl,
  25. String? failedUrl,
})

Implementation

UserRequest(
    {this.username,
    this.isStaging,
    this.password,
    this.secret,
    this.merchantId,
    this.protoDomain,
    this.fname,
    this.lname,
    this.email,
    this.phone,
    this.fulladdress,
    this.city,
    this.state,
    this.country,
    this.pincode,
    this.amount,
    this.orderid,
    this.currency,
    this.isCurrency,
    this.chMode,
    this.customVar,
    this.txnSubtype,
    this.wallet,
    this.successUrl,
    this.failedUrl});