OnPayOrder constructor

OnPayOrder({
  1. required String recipient,
  2. required String userEmail,
  3. required String payFor,
  4. required double amount,
  5. String? reference,
  6. String payMode = "fix",
  7. String ticker = "RUR",
  8. String interfaceTicker = "CRW",
  9. String? note,
  10. Map<String, String> additionalParams = const {},
})

Implementation

OnPayOrder({
  required this.recipient,
  required this.userEmail,
  required this.payFor,
  required this.amount,
  this.reference,
  this.payMode = "fix",
  this.ticker = "RUR",
  this.interfaceTicker = "CRW", // CreditCards Payment gateway
  this.note,
  this.additionalParams = const {},
});