TranscriptEvent.fromJson constructor

TranscriptEvent.fromJson(
  1. String source
)

Creates a TranscriptEvent from the given JSON string.

Implementation

factory TranscriptEvent.fromJson(String source) =>
    TranscriptEvent.fromMap(json.decode(source) as Map<String, dynamic>);