Write data in body response and send it.

Property definitions

popcorn :: pop_handlers $ 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
lib/popcorn/pop_handlers.nit:431,2--443,4