nitcorn :: HttpResponse :: send
# Write data in body response and send it. fun send(raw_data: nullable Writable, status: nullable Int) do if raw_data != null then body = raw_data end if status != null then status_code = status else status_code = 200 end check_sent sent = true end