initialize method

Future<bool> initialize()

This is just a hack, to make it compatible with LiteState's inner storage but you can also use it to make sure the repository is initialized and can already be used to store values

Implementation

Future<bool> initialize() async {
  return _completer.future;
}