Add storage provider

This commit is contained in:
Sambo Chea 2021-03-26 08:21:48 +07:00
parent cb34cfbabe
commit 34e833abd1

View File

@ -0,0 +1,4 @@
abstract class StorageProvider {
/// Allow to sync the first value.
void syncFirst();
}