description |
---|
How to integrate IntaSend with Flutter for IOS and Android applications |
Check https://pub.dev/packages/intasend_flutter/install the official package for installation instructions. Be sure to install and use the latest.
Flutter plugins enable you to set up a checkout screen and render it on a webview. You'll require your public key. Consider using webhooks to update your backend when the user pays, and probably send a push notification or update the user interface on payment success.
import 'package:intasend_flutter/models/checkout.dart';
import 'package:intasend_flutter/intasend_flutter.dart';
// How to initiate the checkout widget
Checkout checkout = Checkout(
publicKey: "<PUBLIC-KEY>",
amount: 10.01,
email: "[email protected]",
currency: "USD",
firstName: "Joe",
lastName: "Doe");
// Add test to true in sandbox environment. Use false to go live
IntasendFlutter.initCheckout(
test: true, checkout: checkout, context: context);
Check out https://pub.dev/packages/intasend_flutter/example for a complete code example on initiating checkout view on button press.