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 run(); }