getFileData method

  1. @override
Future<Uint8List> getFileData(
  1. dynamic htmlFile, {
  2. required int viewId,
})
override

Get the contents of the passed HTML file.

Implementation

@override
Future<Uint8List> getFileData(dynamic htmlFile, {required int viewId}) {
  return _views[viewId]!.getFileData(htmlFile);
}