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