isGooglePayAvailable method

  1. @override
Future<bool> isGooglePayAvailable()
override

Method used to check if Google Pay is available

Implementation

@override
Future<bool> isGooglePayAvailable() async {
  final result = await methodChannel.invokeMethod(isGooglePayAvailableMethod);

  return result as bool;
}