getAllFiles method
Implementation
Future<List<FileModel>> getAllFiles({
DateTime? fromDate,
int? limit,
bool orderByDesc = true,
bool sortBySize = false,
bool sortByName = false,
List<String> fileExtensions = const ['pdf', 'txt', 'zip'],
String? keyword,
}) {
throw UnimplementedError('getAllFiles() has not been implemented.');
}