CatalogDTO constructor

CatalogDTO({
  1. String? id,
  2. String? createdAt,
  3. String? updatedAt,
  4. bool? isActive,
  5. bool? isDeleted,
  6. String? name,
  7. List<ProductDTO>? products,
  8. List<CatalogDTO>? assignedCatalogs,
  9. StoreDTO? store,
})

Implementation

CatalogDTO(
    {super.id,
    super.createdAt,
    super.updatedAt,
    super.isActive,
    super.isDeleted,
    this.name,
    this.products,
    this.assignedCatalogs,
    this.store});