createFileUrl method
Create a temporary URL to the passed HTML file.
When finished, the URL should be released using releaseFileUrl().
Implementation
@override
Future<String> createFileUrl(DropzoneFileInterface file,
{required int viewId}) {
return _views[viewId]!.createFileUrl(file);
}