Uri.directory constructor

Uri.directory(
  1. String path,
  2. {bool? windows}
)

Like Uri.file except that a non-empty URI path ends in a slash.

If path is not empty, and it doesn't end in a directory separator, then a slash is added to the returned URI's path. In all other cases, the result is the same as returned by Uri.file.

Implementation

factory Uri.directory(String path, {bool? windows}) = _Uri.directory;

© 2012 the Dart project authors
Licensed under the Creative Commons Attribution-ShareAlike License v4.0.
https://api.dart.dev/stable/2.13.0/dart-core/Uri/Uri.directory.html