url method

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

Returns a public URL for the file at path.

Implementation

@override
String url(String path) {
  return p.join(baseUrl, path).replaceAll(r'\', '/');
}