deleteOldFiles method Null safety

Future<int> deleteOldFiles(
  1. DateTime base
)

Delete files older than the base. Returns the amount of rows that were deleted.

Implementation

Future<int> deleteOldFiles(DateTime base) async {
  return await _db.deleteOldFiles(base);
}