cyberpay_flutterplugin 1.0.0+22 copy "cyberpay_flutterplugin: ^1.0.0+22" to clipboard
cyberpay_flutterplugin: ^1.0.0+22 copied to clipboard

discontinued

A Cyber Pay Flutter Payment SDK. The Android SDK to integrate to the cyberpay payment gateway The Cyberpay SDK makes it quick and easy to build seamless payment into your android app. The SDK contains [...]

Flutter Cyber Pay SDK #

A Flutter package allows you to easily implement the Cyber Pay Credit Card's UI easily with the Card detection.

Codacy Badge

Preview #

The example app running in Android

Installing #

  1. Add dependency to pubspec.yaml

    Get the latest version in the 'Installing' tab on pub.dartlang.org

dependencies:
    cyberpay_flutterplugin: ^1.0.0+22
  1. Import the package
import 'package:cyberpay_flutterplugin/model/transaction_model.dart';

  1. Adding TransactionObject

With required parameters


    TransactionObject transactionObject = TransactionObject(
          integrationKey: 'YOUR INTEGRATION KEY',
          amount: (100000)AMOUNT IN KOBO,
          customerEmail: "name@mail.com",
          liveMode: false);
      
    
      static const platform = const MethodChannel('com.startCyberPay/Channel');
    
  1. Adding To your Payment Button

 FlatButton(
         onPressed: () async {
           String response = "";
           try {
             final String result = await platform.invokeMethod(
                 'chargeCard', transactionObject.toJson());
 
             response = result;
           } on PlatformException catch (e) {
             response = "Failed to Invoke: '${e.message}'.";
           }
         },
       ),

  1. Get Response Back from InitState

 @override
   void initState() {
     super.initState(); 
     
     platform.setMethodCallHandler((call) {
       final String argument = call.arguments;
       switch (call.method) {
         case "onSuccess":
           
           // Perform Action on Success
 
           break;
       }
     });
   }

How to use #

Check out the example app in the example directory or the 'Example' tab on pub.dartlang.org for a more complete example.

Getting Started #

This project is a starting point for a Dart package, a library module containing code that can be shared easily across multiple Flutter or Dart projects.

For help getting started with Flutter, view our online documentation, which offers tutorials, samples, guidance on mobile development, and a full API reference.

0
likes
20
points
0
downloads

Publisher

unverified uploader

Weekly Downloads

A Cyber Pay Flutter Payment SDK. The Android SDK to integrate to the cyberpay payment gateway The Cyberpay SDK makes it quick and easy to build seamless payment into your android app. The SDK contains custom views, and helps in managing the Cyberspace API.

Repository (GitHub)
View/report issues

License

BSD-3-Clause (license)

Dependencies

cupertino_icons, flushbar, flutter, flutter_spinkit, intl

More

Packages that depend on cyberpay_flutterplugin