pathFiles function

List<String> pathFiles(
  1. String path, [
  2. bool? recursive
])

Implementation

List<String> pathFiles(String path, [bool? recursive]) {
  return std_std.pathFiles(path, recursive);
}