encoding property

  1. @override
Encoding encoding
override

The Encoding used when writing strings.

Depending on the underlying consumer, this property might be mutable.

Implementation

@override
Encoding get encoding => request.encoding;
  1. @override
void encoding=(Encoding value)
override

The Encoding used when writing strings.

Depending on the underlying consumer, this property might be mutable.

Implementation

@override
set encoding(Encoding value) => request.encoding = value;