url property

String? url

The URL of the file.

Implementation

String? get url {
  String? url;
  final Map? fileMap = _fileMap;
  if (fileMap != null) {
    url = fileMap['url'];
  }
  return url;
}