execute method

int execute()

Execute the delete and return the result

Implementation

int execute() {
  final sql = 'DELETE FROM $_table $_whereClause';
  return _db.execute(sql, _whereArgs);
}