readIntoBytes abstract method

FutureOr<int> readIntoBytes(
  1. List<int> sink, [
  2. int start = 0,
  3. int? end
])

Removes exactly end - start bytes from this and copies them into sink.

Implementation

FutureOr<int> readIntoBytes(List<int> sink, [int start = 0, int? end]);