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