openRead method

  1. @override
Stream<List<int>> openRead([
  1. int? start,
  2. int? end
])
override

Create a new independent Stream for the contents of this asset. *

    • start - the starting offset (inclusive)
    • end - the ending offset (exclusive)

Implementation

@override
Stream<List<int>> openRead([int? start, int? end]) => file.openRead(start, end);