isGooglePayAvailable method
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;
}