list method

Stream<FileSystemEntity> list({
  1. String? root,
  2. bool followLinks = true,
})

Convenience method for Glob.listFileSystem which uses the local file system.

Implementation

Stream<FileSystemEntity> list({String? root, bool followLinks = true}) =>
    listFileSystem(const LocalFileSystem(),
        root: root, followLinks: followLinks);