mek_stripe_terminal 4.0.4 copy "mek_stripe_terminal: ^4.0.4" to clipboard
mek_stripe_terminal: ^4.0.4 copied to clipboard

A StripeTerminal plugin to discover readers, connect to them and process payments.

mek_stripe_terminal #

A flutter plugin to scan stripe readers and connect to the them and get the payment methods.

Docs #

This plugin tries to faithfully follow the signature of classes and methods. Most of the classes in dart have the same name as the native classes. There may be some differences between this sdk and the native one to expose an API more simply by supporting streams instead of callbacks for listeners

Features #

All features of android and ios sdk are supported (Also the TapToPay feature)

Offline mode is not supported

Installation #

See official doc for more details

Android #

If you are using this plugin along with Stripe Terminal SDK see this section [Issue #349][https://github.com/stripe/stripe-terminal-android/issues/349]
android {
    // TODO: remove this two directives once stripe_terminal fixes its plugin
    //      these two snippets are excluding a dup dependency that is probably not transitive
    //      https://github.com/stripe/stripe-terminal-android/issues/349
    configurations {
        all*.exclude module: 'bcprov-jdk15to18'
    }
    packagingOptions {
        pickFirst 'org/bouncycastle/x509/CertPathReviewerMessages.properties'
        pickFirst 'org/bouncycastle/x509/CertPathReviewerMessages_de.properties'
    }
}
copied to clipboard

See official doc for more details

iOS #

You need to provide permission request strings to your Info.plist file. A sample content can be

	<key>NSLocationWhenInUseUsageDescription</key>
	<string>Location access is required in order to accept payments.</string>
	<key>NSBluetoothPeripheralUsageDescription</key>
	<string>Bluetooth access is required in order to connect to supported bluetooth card readers.</string>
	<key>NSBluetoothAlwaysUsageDescription</key>
	<string>This app uses Bluetooth to connect to supported card readers.</string>
copied to clipboard

You also need to authorize background modes authorization for bluetooth-central. Paste the following to your Info.plist file

	<key>UIBackgroundModes</key>
	<array>
		<string>bluetooth-central</string>
	</array>
copied to clipboard

Tap to pay #

To use Tap to Pay on iPhone to accept payments, your application must request and configure the Tap to Pay on iPhone entitlement from your Apple Developer account. Review the instructions for requesting this entitlement. After you add an entitlements file to your app build target, add the following:

<key>com.apple.developer.proximity-reader.payment.acceptance</key>
<true/>
copied to clipboard

See official doc for more details

Known bugs #

Usage #

You can see the usage example in the example folder

Initialization #

  1. Request the permissions

    import 'package:permission_handler/permission_handler.dart';
       
    final permissions = [
      Permission.locationWhenInUse,
      Permission.bluetooth,
      if (Platform.isAndroid) ...[
        Permission.bluetoothScan,
        Permission.bluetoothConnect,
      ],
    ];
    await permissions.request();
    
    copied to clipboard
  2. Initialize the SDK

    StripeTerminal.initTerminal(
      fetchToken: () async {
        // Call your backend to get the connection token and return to this function
        // Example token can be.
        const token = "pst_test_XXXXXXXXXX....";
    
        return token;
      },
    );
    
    copied to clipboard

    Example backend code to get the connection token written on node.js:

    import Stripe from "stripe";
    import express from "express";
    
    const stripe = new Stripe("sk_test_XXXXXXXXXXXXXXXXXX", {
        apiVersion: "2020-08-27"
    })
    
    const app = express();
    
    app.get("/connectionToken", async (req, res) => {
        const token = await stripe.terminal.connectionTokens.create();
        res.send({
            success: true,
            data: token.secret
        });
    });
    
    app.listen(8000, () => {
        console.log("Server started")
    });
    
    copied to clipboard

Discover and Connect Reader #

  1. Discover the devices nearby and show it to the user. Stripe Docs
    Terminal.instance
        .discoverReaders(BluetoothDiscoveryConfiguration(isSimulated: true))
        .listen((List<StripeReader> readers) {
            setState(() => _readers = readers);
        });
    
    copied to clipboard
  2. Implement the reader delegate:
    class MyMobileReaderDelegate extends MobileReaderDelegate {
      void onReportAvailableUpdate(ReaderSoftwareUpdate update) {
       print('A new update is available!');
      }
      // and handle others methods...
    }
    
    copied to clipboard
  3. Connect to a bluetooth reader:
    await Terminal.instance.connectReader(readers[0], BluetoothConnectionConfiguration(
      locationId: locationId,
      delegate: MyMobileReaderDelegate(),
    ));
    print("Connected to a device");
    
    copied to clipboard

Process a Payment #

  1. Create a payment intent on backend side
    // Get this from your backend by creating a new payment intent
    final backendPaymentIntent = await backend.createPaymentIntent();
    
    copied to clipboard
  2. Retrieve payment intent
    final paymentIntent = await Terminal.instance.retrievePaymentIntent(backendPaymentIntent.clientSecret);
    
    copied to clipboard
  3. Collect payment method
    final processablePaymentIntent = await Terminal.instance.collectPaymentMethod(paymentIntent);
    
    copied to clipboard
  4. Collect payment method
    final capturablePaymentIntent = await Terminal.instance.confirmPaymentIntent(processablePaymentIntent)
    print("A payment intent has captured a payment method, send this payment intent to you backend to capture the payment");
    
    copied to clipboard

Contributing #

The code is formatted with a line/page length of 100 characters. Use conventional commits for your commits. Much code in this plugin is auto generated:

Android #

Format code with ./gradlew spotlessApply

31
likes
160
points
2.14k
downloads

Publisher

unverified uploader

Weekly Downloads

2024.09.17 - 2025.04.01

A StripeTerminal plugin to discover readers, connect to them and process payments.

Repository (GitHub)

Topics

#stripe-terminal #mek-packages

Documentation

API reference

License

MIT (license)

Dependencies

collection, flutter, mek_data_class, meta, one_for_all, recase

More

Packages that depend on mek_stripe_terminal