getFileMIME method

Future<String> getFileMIME(
  1. dynamic htmlFile
)

Get the MIME type of the passed HTML file.

Implementation

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