read abstract method

Stream<Uint8List> read(
  1. String path, {
  2. int start = 0,
  3. int? end,
})

Streams bytes in [start, end); end defaults to the file length.

Implementation

Stream<Uint8List> read(String path, {int start = 0, int? end});