FileConfig constructor

FileConfig({
  1. required File file,
  2. bool autoSave = true,
  3. int delay = DELAY_SAVE_MS,
})

Implementation

FileConfig({required File file, bool autoSave = true, int delay = DELAY_SAVE_MS}) : _file = file, _autoSave = autoSave, _delay = delay {
  load();
}