RequestOptions constructor

RequestOptions({
  1. String apiVersion = API_VERSION,
  2. String? guid,
  3. String? idempotencyKey,
  4. String? publishableApiKey,
  5. String? requestType,
  6. String? stripeAccount,
})

Implementation

RequestOptions({
  this.apiVersion = API_VERSION,
  this.guid,
  this.idempotencyKey,
  this.publishableApiKey,
  this.requestType,
  this.stripeAccount,
});