deleteAll method

Future<int> deleteAll()

Deletes all rows matching the current query.

Implementation

Future<int> deleteAll() async {
  final result = await _builder.delete();
  return result.affectedRows ?? 0;
}