ProductCatalogDTO constructor

ProductCatalogDTO({
  1. String? id,
  2. String? createdAt,
  3. String? updatedAt,
  4. bool? isActive,
  5. bool? isDeleted,
  6. bool? canPublish,
  7. CatalogDTO? catalog,
  8. ProductDTO? product,
})

Implementation

ProductCatalogDTO(
    {super.id,
    super.createdAt,
    super.updatedAt,
    super.isActive,
    super.isDeleted,
    this.canPublish,
    this.catalog,
    this.product});