store method

Store store(
  1. String name
)

Implementation

Store store(String name) {
  return _stores.putIfAbsent(name, () {
    return Store(name: name, path: "$path/stores/$name", encrypted: _encrypted, isWeb: _isWeb)
      ..create();
  });
}