Feature<T> constructor

const Feature<T>({
  1. required T value,
})

Implementation

const Feature({
  required T value,
}) : _value = value;