insertRow method
Inserts a single LogEntry and returns the inserted row.
The returned LogEntry will have its id
field set.
Implementation
Future<LogEntry> insertRow(
_i1.Session session,
LogEntry row, {
_i1.Transaction? transaction,
}) async {
return session.db.insertRow<LogEntry>(
row,
transaction: transaction,
);
}