url method

  1. @override
String url(
  1. String path
)
override

Returns the full URL or public path to the file.

Implementation

@override
String url(String path) {
  final file = _file(path);
  return file.resolveSymbolicLinksSync();
}