Group constructor

Group({
  1. String? id,
  2. String? type,
  3. int? highlightRate,
  4. bool? useStock,
  5. List<CategoryDTO>? categories,
  6. BrandDTO? brand,
})

Implementation

Group(
    {this.id,
    this.type,
    this.highlightRate,
    this.useStock,
    this.categories,
    this.brand});