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