getFileSize method

Future<int> getFileSize(
  1. dynamic htmlFile, {
  2. required int viewId,
})

Get the size of the passed HTML file.

Implementation

Future<int> getFileSize(dynamic htmlFile, {required int viewId}) async {
  throw UnimplementedError('getFileSize');
}