deleteAll method

Future<int> deleteAll()

Delete all files. Returns the amount of rows that were deleted.

Implementation

Future<int> deleteAll() async {
  return await _db.deleteAll();
}