CreatePaymentRequest constructor

CreatePaymentRequest({
  1. required InvoiceOrder order,
  2. required PaymentSettings settings,
  3. List<Reciept>? receipt,
  4. Map<String, dynamic>? customParameters,
  5. String? phone,
  6. String? mail,
  7. String? trtype,
  8. String? signToken,
})

Implementation

CreatePaymentRequest({
  required this.order,
  required this.settings,
  this.receipt,
  this.customParameters,
  this.phone,
  this.mail,
  this.trtype,
  String? signToken,
}) : super(signToken);