List<File> getAllFiles(String dir) { final dirList = Directory(dir).listSync(recursive: true); return dirList.whereType<File>().toList(); }