responseContentType property

String? responseContentType

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

Implementation

String? get responseContentType => _delegate.responseContentType;
void 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;
}