hydrate method

Future<void> hydrate()

Implementation

Future<void> hydrate() async {
  if (isHydrated) {
    return;
  }

  await Future.wait([_plaintextStore.hydrate(), _encryptedStore.hydrate()]);
}