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