TranscriptionSessionUpdatedEvent.fromJson constructor

TranscriptionSessionUpdatedEvent.fromJson(
  1. Map<String, dynamic> j
)

Implementation

factory TranscriptionSessionUpdatedEvent.fromJson(Map<String, dynamic> j) => TranscriptionSessionUpdatedEvent(
      eventId: j['event_id'] as String,
      session: RealtimeTranscriptionSession.fromJson(j['session'] as Map<String, dynamic>),
    );