isGooglePaySupported method

Future<bool> isGooglePaySupported(
  1. IsGooglePaySupportedParams params
)

Determines if Google Pay is supported on the device

On iOS this defaults to false

Implementation

Future<bool> isGooglePaySupported(IsGooglePaySupportedParams params) async {
  return await _platform.googlePayIsSupported(params);
}