ipaymu

Last updated:

0 purchases

ipaymu Image
ipaymu Images
Add to Cart

Description:

ipaymu

Ipaymu Flutter (Un-official) #
This plugin is for connecting Flutter with payment gateway (IPAYMU)
Usage/Examples #
Get Payment List
var ipaymu = Ipaymu(vaNumber: "YOUR_VA_NUMBER", apiKey: "YOUR_API_KEY");
paymentMethodModel list = await ipaymu.getPaymentList();
copied to clipboard
Direct Payment
var body = {
'name': 'Buyer',
'phone': '081999501092',
'email': '[email protected]',
'amount': '10000',
'notifyUrl': 'https://mywebsite.com',
'expired': '24',
'comments': 'Payment to XYZ',
'referenceId': '1',
'paymentMethod': 'cc',
'paymentChannel': 'cc',
'feeDirection': 'BUYER'
};

var ipaymu = Ipaymu(vaNumber: "YOUR_VA_NUMBER", apiKey: "YOUR_API_KEY");
directPaymentModel payment = await ipaymu.directPayment(body);
copied to clipboard
License #
MIT

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.