PaymentUIRequest constructor

PaymentUIRequest({
  1. required Order order,
  2. MainMethod? mainMethod,
  3. LoyaltyMethod? loyaltyMethod,
  4. DepositMethod? depositMethod,
  5. required int totalAmount,
  6. Metadata? metadata,
  7. ExtraOptions? extraOptions,
})

Implementation

PaymentUIRequest({
  required this.order,
  this.mainMethod,
  this.loyaltyMethod,
  this.depositMethod,
  required this.totalAmount,
  this.metadata,
  this.extraOptions,
});