clip method

DC clip(
  1. int offset,
  2. int length
)

Implementation

DC clip(int offset, int length) {
  return DC.fromUint8Array(
      Uint8List.fromList(_data.getRange(offset, offset + length).toList()));
}