import 'package:flutter/foundation.dart'; class CustomChangeProvider with ChangeNotifier, DiagnosticableTreeMixin { bool _isConnected = false; bool get isConnected => _isConnected; Future updateConnectionState(bool update) async { _isConnected = update; notifyListeners(); } }