responseContentType property

String? get responseContentType

Content type of the response such as text/html, application/json, etc...

Implementation

String? get responseContentType => _delegate.responseContentType;
set responseContentType (String? responseContentType)

Content type of the response such as text/html, application/json, etc...

If the HttpMetric has already been stopped, returns immediately without taking action.

Implementation

set responseContentType(String? responseContentType) {
  _delegate.responseContentType = responseContentType;
}