Get the value for parameter name or null.

Property definitions

nitcorn :: vararg_routes $ HttpRequest :: param
	# Get the value for parameter `name` or `null`.
	fun param(name: String): nullable String do
		if not uri_params.has_key(name) then return null
		return uri_params[name]
	end
lib/nitcorn/vararg_routes.nit:261,2--265,4