ProductStatus constructor

ProductStatus({
  1. int? id,
  2. String? label,
  3. String? color,
  4. String? display,
})

Implementation

ProductStatus({
    this.id,
    this.label,
    this.color,
    this.display});