releaseFileUrl method

Future<bool> releaseFileUrl(
  1. String fileUrl
)

Release a temporary URL previously created using createFileUrl().

Implementation

Future<bool> releaseFileUrl(String fileUrl) {
  return FlutterDropzonePlatform.instance
      .releaseFileUrl(fileUrl, viewId: viewId);
}