stripedart 1.1.2 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.
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);
}