presentGooglePay method

  1. @Deprecated('Use [confirmPlatformPaySetupIntent] or [confirmPlatformPayPaymentIntent].')
Future<void> presentGooglePay(
  1. PresentGooglePayParams params
)

Setup google pay.

Throws a StripeException in case it is failing

Implementation

@Deprecated(
  'Use [confirmPlatformPaySetupIntent] or [confirmPlatformPayPaymentIntent].',
)
Future<void> presentGooglePay(PresentGooglePayParams params) async {
  return await _platform.presentGooglePay(params);
}