getFileStream method

Stream<List<int>> getFileStream(
  1. dynamic htmlFile, {
  2. required int viewId,
})

Get the contents of the passed HTML file as a chunked stream.

Implementation

Stream<List<int>> getFileStream(dynamic htmlFile,
    {required int viewId}) async* {
  throw UnimplementedError('getFileStream');
}