paytm_allinonesdk 1.2.8 copy "paytm_allinonesdk: ^1.2.8" to clipboard
paytm_allinonesdk: ^1.2.8 copied to clipboard

Paytm All-in-One SDK provides a swift, secure, and seamless payment experience to your users.

paytm_allinonesdk #

Use this package as a library #

  1. Depend on it
Add this to your package's pubspec.yaml file:

dependencies:
  paytm_allinonesdk: ^1.2.7
  1. Install it
You can install packages from the command line:

with Flutter:

$ flutter pub get
Alternatively, your editor might support flutter pub get. Check the docs for your editor to learn more.
  1. Import it
Now in your Dart code, you can use:

import 'package:paytm_allinonesdk/paytm_allinonesdk.dart';
  1. Call transaction method
    try {
      var response = AllInOneSdk.startTransaction(
          mid, orderId, amount, txnToken, "", isStaging, restrictAppInvoke);
      response.then((value) {
        print(value);
        setState(() {
          result = value.toString();
        });
      }).catchError((onError) {
        if (onError is PlatformException) {
          setState(() {
            result = onError.message + " \n  " + onError.details.toString();
          });
        } else {
          setState(() {
            result = onError.toString();
          });
        }
      });
    } catch (err) {
      result = err.message;
    }
49
likes
140
points
4.62k
downloads

Publisher

unverified uploader

Weekly Downloads

Paytm All-in-One SDK provides a swift, secure, and seamless payment experience to your users.

Homepage

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on paytm_allinonesdk