remove method
Removes and closes one active connection.
Implementation
Future<bool> remove(String connectionId, [Object? reason]) async {
final AcpServerConnectionState? state = _active.remove(connectionId);
if (state == null) {
return false;
}
await state.close(reason);
return true;
}