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