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

outdated

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
0
pub points
55%
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

License

unknown (LICENSE)

Dependencies

http, json_annotation

More

Packages that depend on stripedart