toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
      if (audioStream != null) 'audioStream': audioStream!.toJson(),
      if (key != null) 'key': key!,
      if (textStream != null) 'textStream': textStream!.toJson(),
      if (videoStream != null) 'videoStream': videoStream!.toJson(),
    };