getFileUrl function

Future<String> getFileUrl(
  1. String filePath, {
  2. String? webId,
})

Create the URL for a file

Implementation

Future<String> getFileUrl(String filePath, {String? webId}) async =>
    await _getResourceUrl(filePath, isFile: true, webId: webId);