PaymentParams constructor

PaymentParams({
  1. required String merchantID,
  2. required String merchantKey,
  3. required String salt,
  4. required String amount,
  5. required String transactionID,
  6. required String phone,
  7. required String productName,
  8. required String firstName,
  9. required String email,
  10. required String sURL,
  11. required String fURL,
  12. required String udf1,
  13. required String udf2,
  14. required String udf3,
  15. required String udf4,
  16. required String udf5,
  17. required String udf6,
  18. required String udf7,
  19. required String udf8,
  20. required String udf9,
  21. required String udf10,
  22. required String hash,
  23. bool isDebug = false,
})

Implementation

PaymentParams(
    {required this.merchantID,
    required this.merchantKey,
    required this.salt,
    required this.amount,
    required this.transactionID,
    required this.phone,
    required this.productName,
    required this.firstName,
    required this.email,
    required this.sURL,
    required this.fURL,
    required this.udf1,
    required this.udf2,
    required this.udf3,
    required this.udf4,
    required this.udf5,
    required this.udf6,
    required this.udf7,
    required this.udf8,
    required this.udf9,
    required this.udf10,
    required this.hash,
    this.isDebug: false});