getBuffer method

Uint8List getBuffer(
  1. int position,
  2. int length
)

Implementation

Uint8List getBuffer(int position, int length) {
  assert(position >= 0);
  assert(position + length <= _bufferData.length);
  return _bufferData.sublist(position, position + length);
}