TranscriptionSessionUpdateEvent.fromJson constructor

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

Implementation

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