Unpacker constructor
Unpacker(
- Uint8List _list
Manipulates with provided Uint8List to sequentially unpack values.
Use Unpaker.fromList() to unpack raw List<int> bytes.
Implementation
Unpacker(this._list) : _d = ByteData.view(_list.buffer, _list.offsetInBytes);