Feat constructor

Feat({
  1. String? name,
  2. int? value,
})

Implementation

Feat({
  this.name,
  this.value,
});