waitForClose method
Implementation
Future<void> waitForClose() async {
if (_lifecycleTask == null) {
await _protocolInstance.waitForClose();
return;
}
await _roomClosed.future;
}
Future<void> waitForClose() async {
if (_lifecycleTask == null) {
await _protocolInstance.waitForClose();
return;
}
await _roomClosed.future;
}