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