· DEVELOPER @ TUKOSUPERAPP

Payment with mobile money

hello i need help with payment option to use in uganda, all flutterflow payment systems dont work here can anyone help me with the intergration of flutterwave below is the code for it

handlePaymentInitialization() async {

final Customer customer = Customer(

name: "Flutterwave Developer",

phoneNumber: "1234566677777",

email: "[email protected]"

);

final Flutterwave flutterwave = Flutterwave(

context: context, publicKey: "Public Key-here",

currency: "currency-here",

redirectUrl: "add-your-redirect-url-here",

txRef: "add-your-unique-reference-here",

amount: "3000",

customer: customer,

paymentOptions: "ussd, card, barter, payattitude",

customization: Customization(title: "My Payment"),

isTestMode: true );

}

2 replies