SessionStarted constructor

SessionStarted({
  1. required String sessionId,
  2. String? threadId,
  3. String? turnId,
  4. DateTime? at,
  5. String? message,
})

Creates the event.

Implementation

SessionStarted({
  required this.sessionId,
  this.threadId,
  this.turnId,
  super.at,
  super.message,
});