getAllFilesByFormat method

Future<List<String>> getAllFilesByFormat(
  1. List<String> formats
)

Retrieves files by specific formats/extensions. formats - List of file extensions to search for (e.g., 'apk', 'dart', 'exe') Returns a list of absolute file paths.

Implementation

Future<List<String>> getAllFilesByFormat(List<String> formats) {
  throw UnimplementedError('getAllFilesByFormat() has not been implemented.');
}