checkConnection method

Future<void> checkConnection()

Implementation

Future<void> checkConnection() async {
  final connected = await _honeywellPlugin.isConnected();
  if (connected) {
    _connectionStatusChanged.add(ConnectionStatus.CONNECTED);
  }
}