configureGooglePayUtils method

  1. @override
Future<GooglePayConfigureResult> configureGooglePayUtils(
  1. GooglePayUtilsConfiguration googlePayUtilsConfiguration
)
override

Method used to configure Google Pay utils

Implementation

@override
Future<GooglePayConfigureResult> configureGooglePayUtils(
    GooglePayUtilsConfiguration googlePayUtilsConfiguration) async {
  final result =
      await methodChannel.invokeMethod(configureGooglePayUtilsMethod, jsonEncode(googlePayUtilsConfiguration));

  return mapGooglePayConfigurationResult(result);
}