requestGooglePayPayment method
Implementation
@override
Future<String?> requestGooglePayPayment({
required String authorization,
required String amount,
required String currencyCode,
}) async {
return await methodChannel.invokeMethod<String>('requestGooglePayPayment', {
'authorization': authorization,
'amount': amount,
'currencyCode': currencyCode,
});
}