list method

  1. @override
Stream<Entity> list(
  1. String dirPath
)
override

Implementation

@override
Stream<Entity> list(String dirPath) async* {
  var (fs, rPath) = getFileSystemAndRelativePathByPath(dirPath);
  if (fs != null && rPath != null) {
    yield* fs.list(rPath);
  }
}