PSETransactionModel constructor

PSETransactionModel({
  1. required String bank,
  2. required String value,
  3. required String docType,
  4. required String docNumber,
  5. required String name,
  6. String? lastName,
  7. required String email,
  8. required String cellPhone,
  9. required String ip,
  10. required String urlResponse,
  11. String? phone,
  12. String? address,
  13. String? currency,
  14. String? description,
  15. String? invoice,
  16. String? methodConfimation,
  17. String? tax,
  18. String? taxBase,
  19. String? typePerson,
  20. String? urlConfirmation,
  21. required String extra1,
  22. required String extra2,
  23. bool? testMode,
})

Implementation

PSETransactionModel({
  required this.bank,
  required this.value,
  required this.docType,
  required this.docNumber,
  required this.name,
  this.lastName,
  required this.email,
  required this.cellPhone,
  required this.ip,
  required this.urlResponse,
  this.phone,
  this.address,
  this.currency,
  this.description,
  this.invoice,
  this.methodConfimation,
  this.tax,
  this.taxBase,
  this.typePerson,
  this.urlConfirmation,
  required this.extra1,
  required this.extra2,
  this.testMode,
});