deleteOne method

Future<bool> deleteOne(
  1. Insertable<Row> row
)

Deletes the row from the captured table.

Implementation

Future<bool> deleteOne(Insertable<Row> row) async {
  return await (delete()..whereSamePrimaryKey(row)).go() != 0;
}