delete method

Future<int> delete()

Implementation

Future<int> delete() async {
  try {
    // compile the query
    this._compileDelete();

    // fetch result
    return await this._db!.rawDelete(this._query!, this._getQueryArgs());
  } catch (e) {
    print(e);
  }
  return 0;
}