import 'package:flutter/foundation.dart'; class Counter extends ChangeNotifier{ int _count = 0; get count => _count; void incrementCount(){ _count++; notifyListeners(); } }