import 'package:flutter/cupertino.dart'; import 'package:flutter_service/model/CategoryResponse.dart'; class CategoryProvider with ChangeNotifier { List _categories = []; void setCategories(List value){ _categories = value; notifyListeners(); } List getCategories(){ return _categories; } void removeCategories(){ } void appendCategories(){ } }