ResourceCategory constructor

ResourceCategory({
  1. String? id,
  2. String? name,
  3. String? departmentId,
  4. num? count,
  5. num? childrenCount,
  6. num? order,
  7. String? parentCategoryId,
  8. DateTime? resourceModifiedTime,
})

Implementation

ResourceCategory({
  this.id,
  this.name,
  this.departmentId,
  this.count,
  this.childrenCount,
  this.order,
  this.parentCategoryId,
  this.resourceModifiedTime,
});