list abstract method

Future<List<RepoEntry>> list(
  1. String path, {
  2. bool recursive = false,
  3. int? maxDepth,
  4. String? glob,
})

Lists the directory at path. When recursive, descends up to maxDepth levels; glob filters entries by name/path pattern.

Implementation

Future<List<RepoEntry>> list(
  String path, {
  bool recursive = false,
  int? maxDepth,
  String? glob,
});