FeatureDTO constructor

FeatureDTO({
  1. String? id,
  2. String? createdAt,
  3. String? updatedAt,
  4. bool? isActive,
  5. bool? isDeleted,
  6. String? name,
  7. String? description,
  8. String? slug,
  9. PhotoDTO? icon,
  10. List<FeatureDTO>? children,
})

Implementation

FeatureDTO({
  super.id,
  super.createdAt,
  super.updatedAt,
  super.isActive,
  super.isDeleted,
  this.name,
  this.description,
  this.slug,
  this.icon,
  this.children,
});