statusCode property
read / write
The status code of the response.
Any integer value is accepted. For the official HTTP status codes use the fields from HttpStatus. If no status code is explicitly set the default value HttpStatus.ok is used.
The status code must be set before the body is written
to. Setting the status code after writing to the response body or
closing the response will throw a StateError
.
Implementation
int statusCode = HttpStatus.ok;