PaymentMethodParams.revolutPay constructor

  1. @JsonSerializable(explicitToJson: true)
  2. @FreezedUnionValue('RevolutPay')
const PaymentMethodParams.revolutPay({
  1. required PaymentMethodData paymentMethodData,
})

Paypal is in private beta make sure to request access at Stripe to try it out.

Implementation

@JsonSerializable(explicitToJson: true)
@FreezedUnionValue('RevolutPay')

/// Paypal is in private beta make sure to request access at Stripe to try it out.
const factory PaymentMethodParams.revolutPay({
  /// Paymentmethod data for this paymentmethod.
  required PaymentMethodData paymentMethodData,
}) = _PaymentMethodParamsRevolutPay;