init method

Future<void> init()

Pre-initializes the _prefs, so that they are accessible synchronously.

Implementation

Future<void> init() async {
  await _guard.protect(() async {
    if (_initialized) {
      return;
    }

    _prefs = await read();

    _initialized = true;
  });
}