Skip to content

Commit 5683b8a

Browse files
committed
Fixed: static modifier in the LocalStorage abstract class
1 parent c4da262 commit 5683b8a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/vaahextendflutter/services/storage/local/storage.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ abstract class LocalStorage {
3232
/// LocalStorage.add('posts');
3333
/// //used only with Hive
3434
/// ```
35-
void add(String collectionName) {
35+
static void add(String collectionName) {
3636
return _instanceLocal.add(collectionName);
3737
}
3838

0 commit comments

Comments
 (0)