findById static method

Future<MessageLogEntry?> findById(
  1. Session session,
  2. int id
)

Implementation

static Future<MessageLogEntry?> findById(
  _i1.Session session,
  int id,
) async {
  return session.db.findById<MessageLogEntry>(id);
}