url property
String?
get
url
The URL of the file.
Implementation
String? get url {
String? url;
final Map? fileMap = _fileMap;
if (fileMap != null) {
url = fileMap['url'];
}
return url;
}
The URL of the file.
String? get url {
String? url;
final Map? fileMap = _fileMap;
if (fileMap != null) {
url = fileMap['url'];
}
return url;
}