storagebox 0.1.0 copy "storagebox: ^0.1.0" to clipboard
storagebox: ^0.1.0 copied to clipboard

outdated

Easily store configuration keys and values for your CLI and web apps.

📦 StorageBox

Easily store and persist configuration items for your Dart CLI and Web apps.

Melos docs.page

DocumentationLicense


About #

TODO description/about

Example:

import 'package:storagebox/storagebox.dart';

Future<void> main() async {
  final config = StorageBox('my_awesome_cli');
  config['foo'] = 'bar';
  print(config['foo']);
  config['bar'] = 'foo';
  print(config['bar']);

  // Config is a Map so Map methods can be used;
  config.forEach((key, value) {
    print('$key : $value');
  });
  print(config.containsKey('foo'));
  print(config.remove('bar'));
}

Built and maintained by Invertase.

3
likes
0
pub points
47%
popularity

Publisher

verified publisherinvertase.io

Easily store configuration keys and values for your CLI and web apps.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

collection, meta, path, xdg_directories

More

Packages that depend on storagebox