initial commit (migrated)
This commit is contained in:
commit
b594facb51
143 changed files with 11057 additions and 0 deletions
11
lib/core/data/local/config.dart
Normal file
11
lib/core/data/local/config.dart
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
/// Config base class
|
||||
abstract class Config<T> {
|
||||
/// Get config value
|
||||
Future<T?> get();
|
||||
|
||||
/// Set config value
|
||||
Future<void> set(T value);
|
||||
|
||||
/// Remove config value
|
||||
Future<void> remove();
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue