import 'package:flutter/material.dart'; class BaseController { List _cacheList = []; addValueNotifier(ValueNotifier notify) { _cacheList.add(notify); } void dispose() { _cacheList.forEach((e) => e?.dispose()); } }