getFileData method

Future<Uint8List> getFileData(
  1. dynamic htmlFile
)

Get the contents of the passed HTML file.

Implementation

Future<Uint8List> getFileData(dynamic htmlFile) {
  return FlutterDropzonePlatform.instance
      .getFileData(htmlFile, viewId: viewId);
}