11 lines
255 B
Dart
11 lines
255 B
Dart
import 'package:flutter/cupertino.dart';
|
|
import 'package:localstore/localstore.dart';
|
|
|
|
abstract class DataHolder extends ChangeNotifier {
|
|
|
|
CollectionRef storage(String path) {
|
|
return Localstore.instance.collection(path);
|
|
}
|
|
|
|
Future<void> run();
|
|
} |