statusLine property

String get statusLine

HTTP status line of the response or the 'HTTP/0.9 200 OK' string for HTTP/0.9 responses (i.e., responses that lack a status line) or an empty string if there are no headers.

Implementation

String get statusLine => _wrapped.statusLine;
set statusLine (String v)

Implementation

set statusLine(String v) {
  _wrapped.statusLine = v;
}