getFilename method

Future<String> getFilename(
  1. dynamic htmlFile
)

Get the filename of the passed HTML file.

Implementation

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