This is an implementation of the pay_platform_interface
package for Android.
This package is the endorsed implementation of the pay
plugin, so it gets automatically added to your dependencies when you add the pay
package to your pubspec.yaml
.
If you prefer to integrate or extend this package separately, add it as a dependency in your pubspec.yaml
file as follows:
dependencies:
pay_android: ^2.0.0
Now, you can use the buttons available for the supported payment providers and the methods exposed in the interface that this package uses to communicate with the native end.
final PaymentConfiguration configuration =
PaymentConfiguration.fromJsonString('<yourJsonString>');
RawGooglePayButton(
paymentConfiguration: configuration,
type: GooglePayButtonType.buy),
Note: This is not an officially supported Google product.