Feature constructor

Feature({
  1. int? id,
  2. required String name,
  3. DateTime? createdDate,
  4. String? initialValue,
  5. bool? defaultValue,
  6. String? description,
})

Implementation

Feature({
  this.id,
  required this.name,
  this.createdDate,
  this.initialValue,
  this.defaultValue,
  this.description,
});