toString method

  1. @override
String toString()
override

A string representation of this object.

Some classes have a default textual representation, often paired with a static parse function (like int.parse). These classes will provide the textual representation as their string representation.

Other classes have no meaningful textual representation that a program will care about. Such classes will typically override toString to provide useful information when inspecting the object, mainly for debugging or logging.

Implementation

@override
String toString() {
  return 'Monitor{id: $id, url: $url, scheme: $scheme, host: $host, path: $path, query: $query, protocol: $protocol, method: $method, requestHeaders: $requestHeaders, requestBody: $requestBody, requestContentType: $requestContentType, requestContentLength: $requestContentLength, requestDate: $requestDate, responseHeaders: $responseHeaders, responseBody: $responseBody, responseContentType: $responseContentType, responseContentLength: $responseContentLength, responseDate: $responseDate, responseTlsVersion: $responseTlsVersion, responseCipherSuite: $responseCipherSuite, responseCode: $responseCode, responseMessage: $responseMessage, error: $error, curl: $curl, source: $source, outerId: $outerId}';
}