getAllImages method

Future<List<ImageModel>> getAllImages({
  1. DateTime? fromDate,
  2. int? limit,
  3. bool orderByDesc = true,
  4. bool sortBySize = false,
  5. bool sortByName = false,
  6. String? keyword,
})

Implementation

Future<List<ImageModel>> getAllImages({
  DateTime? fromDate,
  int? limit,
  bool orderByDesc = true,
  bool sortBySize = false,
  bool sortByName = false,
  String? keyword,
}) {
  throw UnimplementedError('getAllImages() has not been implemented.');
}