statusCode property - HttpResponse class - dart:io library (original) (raw)

description

int statusCode

getter/setter pair

The status code of the response.

Any integer value is accepted. For the official HTTP status codes use the fields fromHttpStatus. 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;