Catalog constructor

Catalog({
  1. int? catalogId,
  2. String? name,
  3. bool? published,
  4. int? sortOrder,
  5. int? categoryId,
  6. String? categoryImage,
  7. String? categoryName,
  8. required String id,
  9. DateTime? created,
  10. String? creator,
  11. DateTime? updated,
  12. String? updater,
})

Implementation

Catalog({
  this.catalogId,
  this.name,
  this.published,
  this.sortOrder,
  this.categoryId,
  this.categoryImage,
  this.categoryName,
  required String id,
  DateTime? created,
  String? creator,
  DateTime? updated,
  String? updater,
}) : super(
        id: id,
        created: created,
        updated: updated,
        updater: updater,
      );