Sends text without a trailing newline.
text
Future<void> write(String text) async { if (_aborted) return; try { _res.write(text); await _res.flush(); } on SocketException { _aborted = true; } }