releaseFileUrl method

Future<bool> releaseFileUrl(
  1. String fileUrl
)

Implementation

Future<bool> releaseFileUrl(String fileUrl) async {
  web.URL.revokeObjectURL(fileUrl);
  return true;
}