Deserializer constructor

Deserializer(
  1. Uint8List list, {
  2. ExtDecoder? extDecoder,
  3. bool copyBinaryData = false,
})

Implementation

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