files function

FileCollection files(
  1. Iterable<String> paths
)

Create a FileCollection consisting of multiple files.

Implementation

FileCollection files(Iterable<String> paths) =>
    _FileCollection({for (var f in paths) _ensurePosixPath(f)}, const []);