read method
Read the value at the given offset
in bc
.
Implementation
@override
@pragma('vm:prefer-inline')
List<int> read(BufferContext bc, int offset) {
final listOffset = bc.derefObject(offset);
final length = bc._getUint32(listOffset);
return bc._asUint16List(listOffset + _sizeofUint32, length);
}