MollieCheckout constructor

const MollieCheckout({
  1. Key? key,
  2. required MollieOrderRequest order,
  3. CheckoutStyle? style,
  4. Widget? child,
  5. dynamic onMethodSelected(
    1. MollieOrderRequest
    )?,
  6. bool useCredit = true,
  7. bool usePaypal = true,
  8. bool useSepa = false,
  9. bool useIdeal = false,
  10. bool useApplePay = false,
  11. bool useSofort = false,
})

Implementation

const MollieCheckout(
    {super.key,
    required this.order,
    this.style,
    this.child,
    this.onMethodSelected,
    this.useCredit = true,
    this.usePaypal = true,
    this.useSepa = false,
    this.useIdeal = false,
    this.useApplePay = false,
    this.useSofort = false});