SettingsService constructor

SettingsService({
  1. String? path,
})

Creates or opens a SettingsService at the given path.

If path is omitted the SDK will choose a platform-default storage location.

Parameters

  • path: Optional filesystem path to the settings file.

Implementation

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