settings_yaml 3.0.0-nullsaftey.0 copy "settings_yaml: ^3.0.0-nullsaftey.0" to clipboard
settings_yaml: ^3.0.0-nullsaftey.0 copied to clipboard

outdated

Provides a simple means of saving/loading settings from a yaml file without the yaml fuss.

Provide a very simple method to use yaml files for saving an apps configuration.

Saving config data:

void save() {
  /// create a new .settings.yaml
  var settings = SettingsYaml.load(pathToSettings: '.settings.yaml');

  settings['dbname'] = 'billing';
  settings['dbusername'] = 'username';
  settings['dbpassword'] = 'apassword';
  settings['timeout'] = 200;

  settings.save();
}

Loading config data.

void load() {

  /// load an existing .settings.yaml, if it doesn't exist then create it.
  var settings = SettingsYaml.load(pathToSettings: '.settings.yaml', create: true);

  var dbname = settings['dbname'];
  var username = settings['dbusername'];
  var password = settings['dbpassword'];
  var timeout = settings['timeout'];

  print('dbname $dbname, username: $username, password: $password, timeout: $timeout');

  /// change something

  var newPassword = ask('password');
  settings['dbpassword'] = newPassword;

  settings.save();
}
15
likes
0
pub points
78%
popularity

Publisher

verified publisheronepub.dev

Provides a simple means of saving/loading settings from a yaml file without the yaml fuss.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

meta, path, uuid, yaml

More

Packages that depend on settings_yaml