list method

Iterable<File> list()

List all files in the storage.

Implementation

Iterable<File> list() {
  return _root.listSync().whereType<File>();
}