createFileUrl method

Future<String> createFileUrl(
  1. dynamic htmlFile
)

Create a temporary URL to the passed HTML file.

When finished, the URL should be released using releaseFileUrl().

Implementation

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