Link.fromUri constructor

Link.fromUri(
  1. Uri uri
)

Creates a Link object.

If path is a relative path, it will be interpreted relative to the current working directory (see Directory.current), when used.

If path is an absolute path, it will be immune to changes to the current working directory.

Implementation

factory Link.fromUri(Uri uri) => new Link(uri.toFilePath());

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