maybeWhen<TResult extends Object?> method

  1. @optionalTypeArgs
TResult maybeWhen<TResult extends Object?>({
  1. TResult googlePay(
    1. GooglePayParams googlePayParams,
    2. GooglePayPaymentMethodParams googlePayPaymentMethodParams
    )?,
  2. TResult applePay(
    1. ApplePayParams applePayParams
    )?,
  3. TResult web(
    1. PlatformPayWebPaymentRequestCreateOptions options
    )?,
  4. required TResult orElse(),
})
inherited

Implementation

@optionalTypeArgs
TResult maybeWhen<TResult extends Object?>({
  TResult Function(GooglePayParams googlePayParams,
          GooglePayPaymentMethodParams googlePayPaymentMethodParams)?
      googlePay,
  TResult Function(ApplePayParams applePayParams)? applePay,
  TResult Function(PlatformPayWebPaymentRequestCreateOptions options)? web,
  required TResult orElse(),
}) =>
    throw _privateConstructorUsedError;