getRange abstract method

Future<List<int>> getRange(
  1. int start,
  2. int end
)

Get a range of bytes from the input data.

start and end are the start and end index of the range.

Such as: start = 0, end = 2, then the result is 0, 1.

Implementation

Future<List<int>> getRange(int start, int end);