getFileSize method

Future<int> getFileSize(
  1. dynamic htmlFile
)

Get the size of the passed HTML file.

Implementation

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