toUriStr method

String toUriStr(
  1. String path
)

Converts path to a URI and returns the normalized String representation of the URI.

Implementation

String toUriStr(String path) {
  return toUri(path).toString();
}