persist method

Future<void> persist()

Implementation

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