fromPath static method

Uri fromPath(
  1. String path
)

creates Uri based on path

Implementation

static Uri fromPath(String path) {
  final cleanedPath = VoyagerUtils.cleanUrl(path);

  return Uri.parse("http://tempuri.org/" + cleanedPath);
}