deleteRow method
Future<QueryLogEntry>
deleteRow(
- DatabaseSession session,
- QueryLogEntry row, {
- Transaction? transaction,
Deletes a single QueryLogEntry.
Implementation
Future<QueryLogEntry> deleteRow(
_i1.DatabaseSession session,
QueryLogEntry row, {
_i1.Transaction? transaction,
}) async {
return session.db.deleteRow<QueryLogEntry>(
row,
transaction: transaction,
);
}