Settings constructor

const Settings({
  1. required bool autoEnhance,
  2. required List<String> avoidEvents,
  3. required List<String> avoidStates,
  4. required bool createStateFactory,
  5. required List<String> enhance,
  6. required bool createEventFactory,
})

Implementation

const Settings({
  required this.autoEnhance,
  required this.avoidEvents,
  required this.avoidStates,
  required this.createStateFactory,
  required this.enhance,
  required this.createEventFactory,
});