InstrumentRequest constructor

InstrumentRequest({
  1. PaymentSourceType? type,
  2. String? token,
  3. required Customer customer,
  4. String? id,
  5. int? expiryMonth,
  6. int? expiryYear,
  7. bool? isDefault,
})

Implementation

InstrumentRequest({
  this.type,
  this.token,
  required this.customer,
  this.id,
  this.expiryMonth,
  this.expiryYear,
  this.isDefault,
});