delete method

Future<int> delete(
  1. DatabaseClient client
)

Delete records matching the query.

Implementation

Future<int> delete(DatabaseClient client) async {
  return store.delete(client, finder: finder);
}