codec property
Codec
get
codec
Implementation
Codec get codec => _codec;
set
codec
(Codec codec)
Implementation
set codec(Codec codec) {
if (codec is ProxyCodec) {
throw Exception('Nested ProxyCodecs is not allowed');
}
_codec = codec;
}