SettingsService constructor

SettingsService({
  1. String? path,
})

Creates or opens a SettingsService at the given path If no path is given, a default path will be used

Parameters

  • IN path The path to the settings file

Implementation

factory SettingsService({String? path}) {
  return _create(path: path);
}