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

A Flutter plugin for making payments via 100Pay - Supports Android and ios. (100Pay Checkout)

hundredpay_example #

A Flutter plugin for making payments via 100pay - Supports Android and ios.

Features #

  • Accept cryptopayments on your website
  • Withdraw to your crypto wallet or fiat balance
  • create payment invoice
  • create payment links
  • create your own coin on any supported network
  • launch an ICO/IDO to raise funds for your project
  • analytics to monitor your business
  • swap crypto
  • buy/sell crypto

Getting started #

Before you can start accepting crypto payments, you need to create a 100pay account and obtain your api keys from the 100Developers platform

FOR ANDROID COMPATIBILITY: Ensure your minSdkVersion is 19 or higher

defaultConfig {
        // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
        applicationId '...'
        minSdkVersion 19 // Ensure this line is 19 or higher
        targetSdkVersion flutter.targetSdkVersion
        versionCode flutterVersionCode.toInteger()
        versionName flutterVersionName
    }

Example #

 HundredPay.makePayment(
                        customerEmail: emailController.text,
                        customerPhoneNumber: '0800000000',
                        customerName: 'customer',
                        customerUserId: '111111',
                        amount: '$amount',
                        userId: '12345',
                        refId: ref,
                        description: "For montly sub",
                        apiKey: '',//should look like this "LIVE;PK;ej...."
                        currency: 'NGN',
                        country: 'NG',
                        chargeSource: 'api',
                        callBackUrl: "callBackUrl",
                        context: context);

12
likes
0
pub points
29%
popularity

Publisher

unverified uploader

A Flutter plugin for making payments via 100Pay - Supports Android and ios. (100Pay Checkout)

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter, http, plugin_platform_interface, webview_flutter

More

Packages that depend on hundredpay