Feature<T> constructor

const Feature<T>({
  1. required String key,
  2. required String title,
  3. FeatureType type = FeatureType.feature,
  4. String description = '',
  5. String remoteSourceKey = '',
  6. T? defaultValue,
})

Implementation

const Feature({
  required this.key,
  required this.title,
  this.type = FeatureType.feature,
  this.description = '',
  this.remoteSourceKey = '',
  this.defaultValue,
});