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": 'customer@example.com',
  });
  print(result);
}
8
likes
100
pub points
54%
popularity

Publisher

verified publisheriglu.dev

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