listAll method
List all the files in this root directory.
Implementation
Future<List<File>> listAll(
String rootPath, {
bool includeHidden = false,
List<RegExp>? excluded,
List<RegExp>? allowed,
}) async =>
await listAllImpl(
rootPath,
includeHidden: includeHidden,
excluded: excluded,
allowed: allowed,
);