Stripe constructor

Stripe(
  1. String apiKey
)

Implementation

factory Stripe(String apiKey) {
  final client = Client(apiKey: apiKey);
  return Stripe.withClient(client);
}