hydrate method

Future<void> hydrate()

Implementation

Future<void> hydrate() async {
  await Future.wait([
    _plaintextStore.hydrate(),
    _encryptedStore.hydrate(),
  ]);
}