ProductStatus constructor

ProductStatus({
  1. ProductStatusStatus? status,
  2. String? lastStatusChange,
  3. ProductStatusBreakdown? breakdown,
})

Implementation

ProductStatus({
  this.status,
  this.lastStatusChange,
  this.breakdown,
});