Feature constructor

Feature({
  1. FeatureObjectTypeEnum? objectType,
  2. int? id,
  3. String? createdBy,
  4. DateTime? createdDate,
  5. String? lastModifiedBy,
  6. DateTime? lastModifiedDate,
  7. String? code,
  8. String? name,
  9. Object? description,
  10. List<FeatureModality> modalities = const [],
  11. Feature? feature,
})

Returns a new Feature instance.

Implementation

Feature({
  this.objectType,
  this.id,
  this.createdBy,
  this.createdDate,
  this.lastModifiedBy,
  this.lastModifiedDate,
  this.code,
  this.name,
  this.description,
  this.modalities = const [],
  this.feature,
});