quick_pay 1.0.1 copy "quick_pay: ^1.0.1" to clipboard
quick_pay: ^1.0.1 copied to clipboard

A Flutter plugin for QuickPay payments in your mobile application.

Flutter QuickPay #

A Flutter plugin for QuickPay payments in your mobile application.

This is a light and simple implementation of QuickPay payments. So if somebody will use it, don't be shy to create an issues so then I will improve or add new features to this plugin.

For more information please check QuickPay website: https://quickpay.net/

Usage #

First you need to initialize QuickPay. For this please find API key in your account at https://quickpay.net/.


QuickPay.init(apiKey: 'PUT HERE YOUR QUICK PAY API KEY');

After successfully initializing, you can make payment. For that use static function makePayment. Now available such params:

String currency,
String orderId,
double price,
int autoCapture // Optional

try {
  final price = 245.0 * 100;
  final payment = await QuickPay.makePayment(
    currency: 'DKK',
    orderId: '12345',
    price: price,
  );
} catch (error) {
  // handle error
}

Examples #

Android IOS
3
likes
40
pub points
10%
popularity

Publisher

unverified uploader

A Flutter plugin for QuickPay payments in your mobile application.

Repository (GitHub)
View/report issues

License

MIT (LICENSE)

Dependencies

flutter, meta

More

Packages that depend on quick_pay