isGooglePaySupported method

  1. @Deprecated('Use [isPlatformPaySupported] instead')
Future<bool> isGooglePaySupported(
  1. IsGooglePaySupportedParams params
)

Determines if Google Pay is supported on the device

On iOS this defaults to false

Implementation

@Deprecated('Use [isPlatformPaySupported] instead')
Future<bool> isGooglePaySupported(IsGooglePaySupportedParams params) async {
  return await _platform.googlePayIsSupported(params);
}