Deserializer constructor
Deserializer(
- Uint8List list, {
- ExtDecoder? extDecoder,
- bool copyBinaryData = false,
Implementation
Deserializer(
Uint8List list, {
ExtDecoder? extDecoder,
this.copyBinaryData = false,
}) : _list = list,
_data = ByteData.view(list.buffer, list.offsetInBytes),
_extDecoder = extDecoder;