FeatureOptions constructor

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

Implementation

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