OrderCancellation constructor

OrderCancellation({
  1. String? actor,
  2. String? creationDate,
  3. int? quantity,
  4. String? reason,
  5. String? reasonText,
})

Implementation

OrderCancellation({
  this.actor,
  this.creationDate,
  this.quantity,
  this.reason,
  this.reasonText,
});