list method

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

Implementation

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