encoding property

  1. @override
Encoding get encoding
inherited

The Encoding used when writing strings.

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

Implementation

@override
Encoding get encoding => socket.encoding;
  1. @override
set encoding (Encoding encoding)
inherited

The Encoding used when writing strings.

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

Implementation

@override
set encoding(Encoding encoding) => socket.encoding = encoding;