Feature<T> constructor
const
Feature<T> ({
- required String key,
- required String title,
- FeatureType type = FeatureType.feature,
- String description = '',
- String remoteSourceKey = '',
- T? defaultValue,
Implementation
const Feature({
required this.key,
required this.title,
this.type = FeatureType.feature,
this.description = '',
this.remoteSourceKey = '',
this.defaultValue,
});