OrderOptions constructor

OrderOptions({
  1. required String orderId,
  2. required int amount,
  3. bool recurrentPayment = false,
  4. String? title,
  5. String? description,
  6. Receipt? receipt,
  7. List<Shop>? shops,
  8. List<Receipt>? receipts,
  9. String? successURL,
  10. String? failURL,
  11. ClientInfo? clientInfo,
  12. List<Item>? items,
  13. Map<String, String>? additionalData,
  14. PayType? payType,
})

Implementation

OrderOptions({
  required this.orderId,
  required this.amount,
  this.recurrentPayment = false,
  this.title,
  this.description,
  this.receipt,
  this.shops,
  this.receipts,
  this.successURL,
  this.failURL,
  this.clientInfo,
  this.items,
  this.additionalData,
  this.payType,
});