findById method
Finds a single LogEntry by its id
or null if no such row exists.
Implementation
Future<LogEntry?> findById(
_i1.Session session,
int id, {
_i1.Transaction? transaction,
}) async {
return session.db.findById<LogEntry>(
id,
transaction: transaction,
);
}