getAllFiles method

Future<List<FileModel>> getAllFiles({
  1. DateTime? fromDate,
  2. int? limit,
  3. bool orderByDesc = true,
  4. bool sortBySize = false,
  5. bool sortByName = false,
  6. List<String> fileExtensions = const ['pdf', 'txt', 'zip'],
  7. String? keyword,
})

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.');
}