deleteAll method

Future<int> deleteAll()

Deletes ALL rows from the table.

See also SingleTableQueryMixin.where.

Implementation

Future<int> deleteAll() {
  return delete().go();
}