RequestOptions constructor

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

Implementation

RequestOptions({
  required this.apiVersion,
  this.guid,
  this.idempotencyKey,
  required this.key,
  this.requestType,
  this.stripeAccount,
});