responseContentType property

String? responseContentType

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

Implementation

String? get responseContentType {
  throw UnimplementedError('get responseContentType is not implemented');
}
void responseContentType=(String? responseContentType)

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

Implementation

set responseContentType(String? responseContentType) {
  throw UnimplementedError('set responseContentType() is not implemented');
}