FeatureModel constructor

const FeatureModel({
  1. int value = 4,
  2. required double ratio,
  3. String? note,
  4. List<int> numbers = const <int>[],
  5. Set<String> tags = const <String>{},
  6. Mood mood = Mood.happy,
  7. Weird weird = const Weird(7),
})

Implementation

const FeatureModel({
  this.value = 4,
  required this.ratio,
  this.note,
  this.numbers = const <int>[],
  this.tags = const <String>{},
  this.mood = Mood.happy,
  this.weird = const Weird(7),
});