Stream<bool> pairingStateStream(String deviceId) => _pairStateStreamController.stream .where((e) => e.deviceId == deviceId) .map((e) => e.isPaired);