Flutter plugin for Monnify SDK
To use this plugin, add monnify_flutter_sdk_plus
as a dependency in your pubspec.yaml file.
This plugin exposes two APIs:
Initialize the plugin. This should be done once, preferably in the initState
of your widget.
import 'package:monnify_flutter_sdk_plus/monnify_flutter_sdk_plus.dart';
class _MyAppState extends State<MyApp> {
@override
void initState() {
super.initState();
MonnifyFlutterSdkPlus.initialize(
'YOUR_API_KEY',
'CONTRACTCODE',
ApplicationMode.TEST
)
}
}
Create an object of the Transaction class and pass it to the initializePayment function
Future<void> initPayment() async {
TransactionResponse transactionResponse =
await MonnifyFlutterSdkPlus.initializePayment(Transaction(
2000,
"NGN",
"Customer Name",
"[email protected]",
"PAYMENT_REF",
"Description of payment",
metaData: {
"ip": "196.168.45.22",
"device": "mobile_flutter"
// any other info
},
paymentMethods: [PaymentMethod.CARD, PaymentMethod.ACCOUNT_TRANSFER],
incomeSplitConfig: [
SubAccountDetails("MFY_SUB_319452883968", 10.5, 500, true),
SubAccountDetails("MFY_SUB_259811283666", 10.5, 1000, false)]
)
);
}
Optional params: Payment Methods specify transaction-level payment methods. Sub-Accounts in incomeSplitConfig are accounts that will receive settlement for the particular transaction being initialized. MetaData is map with single depth for any extra information you want to pass along with the transaction.
The TransactionResponse class received after sdk is closed contains the below fields
String paymentDate;
double amountPayable;
double amountPaid;
String paymentMethod;
String transactionStatus;
String transactionReference;
String paymentReference;
For further info about Monnify's mobile SDKs, including transaction status types, see the documentations for the Android and iOS SDKs# monnify_flutter_sdk_plus