CheckoutObject constructor

CheckoutObject({
  1. String? url,
  2. String? description,
  3. String? id,
  4. String? name,
  5. String? pricingType,
  6. bool? isSuccessful,
  7. ErrorObject? error,
  8. List? requestedInfo,
})

Implementation

CheckoutObject({
  this.url,
  this.description,
  this.id,
  this.name,
  this.pricingType,
  this.isSuccessful,
  this.error,
  this.requestedInfo,
});