biapay_gateway 0.0.8 biapay_gateway: ^0.0.8 copied to clipboard
BIAPAY Payment Gateway SDK
BIAPAY PAYMENT GATEWAY SDK #
Biapay Payment Gateway SDK is a high-level wrapper around the BiaPay
Payment Gateway API that provides strongly typed responses and exceptions.
Features #
- BiaPay Payment Gateway SDK for Flutter.
- Easy to use.
- Support for Android and iOS.
- No need to setup any additional configuration.
- Safe & Secure
- Instant Cashout
- End-to-end encryption
- Transparent Pricing
Getting started #
Installation #
Install the latest version from pub.dev.
Add this biapay_gateway to your package's pubspec.yaml file:
dependencies:
biapay_gateway: ^0.0.6
or Run this command with your terminal:
$ flutter pub add biapay_gateway
Quick Start #
Import the package into your dart file.
// Import package
import 'package:biapay_gateway/biapay_gateway.dart';
Example #
create a new instance of BiaPayGateway
class. and pass required parameters.
// Import package
import 'package:biapay_gateway/biapay_gateway.dart';
// Create a new instance of BiaPayGateway class.
final biapay = BiaPayGateway(
clientId: 'clientId',
clientSecret: 'clientSecret',
email: 'email',
mobileNumber: 'mobileNumber',
orderId: 'orderId',
amount: 'amount',
currencyCode: 'currencyCode',
transactionId: 'transactionId',
transactionType: 'transactionType',
);
After creating a new instance of BiaPayGateway
class. call launch
method to start payment process.
// Call launch method to start payment process.
biapay.launch()
Additional information #
For more information, see BiaPay.