url property
Remote CDN URL to download the file (alternative to data for large files).
Implementation
@override
Uri? get url {
Uri? remote = _remoteURL;
if (remote == null) {
String? locator = getString('URL');
if (locator != null && locator.isNotEmpty) {
_remoteURL = remote = Uri.parse(locator);
}
}
return remote;
}