openRead method

Stream<List<int>> openRead()

Reads the resource content as a stream of bytes.

Implementation

Stream<List<int>> openRead() async* {
  var uri = await uriResolved;
  yield* _loader.openRead(uri);
}