stripedart 1.1.2 copy "stripedart: ^1.1.2" to clipboard
stripedart: ^1.1.2 copied to clipboard

Dart library for the Stripe API. The Stripe Dart library provides convenient access to the Stripe API from applications written in server-side Dart.

example/main.dart

import 'package:stripedart/stripedart.dart';

Future<void> main() async {
  var stripe = Stripe('sk_test_...');
  var result = await stripe.core.customers.create(params: {
    "email": '[email protected]',
  });
  print(result);
}
8
likes
120
points
636
downloads

Publisher

verified publisheriglu.dev

Weekly Downloads

Dart library for the Stripe API. The Stripe Dart library provides convenient access to the Stripe API from applications written in server-side Dart.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

http, json_annotation

More

Packages that depend on stripedart