contentType property

  1. @override
ContentType? contentType
override

The ContentType of the contentTypeHeader header, if any.

Implementation

@override
ContentType? get contentType => origin.contentType;
  1. @override
void contentType=(ContentType? contentType)
override

The ContentType of the contentTypeHeader header, if any.

Implementation

@override
void set contentType(ContentType? contentType) {
  origin.contentType = contentType;
}