Feature constructor

Feature({
  1. String? name,
  2. String? identifier,
  3. int? value,
})

Implementation

Feature({
  this.name,
  this.identifier,
  this.value,
});