createLink method

Future<Link> createLink(
  1. dynamic path, {
  2. bool recursive = false,
})

Creates a symbolic link in the file system.

Implementation

Future<Link> createLink(dynamic path, {bool recursive = false}) {
  return link(path).create(path, recursive: recursive);
}