getFileStream method

Stream<List<int>> getFileStream(
  1. dynamic htmlFile
)

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

Implementation

Stream<List<int>> getFileStream(dynamic htmlFile) {
  return FlutterDropzonePlatform.instance
      .getFileStream(htmlFile, viewId: viewId);
}