GoogleCloudDialogflowCxV3ResponseMessageMixedAudioSegment.fromJson constructor

GoogleCloudDialogflowCxV3ResponseMessageMixedAudioSegment.fromJson(
  1. Map json_
)

Implementation

GoogleCloudDialogflowCxV3ResponseMessageMixedAudioSegment.fromJson(
    core.Map json_)
    : this(
        allowPlaybackInterruption:
            json_.containsKey('allowPlaybackInterruption')
                ? json_['allowPlaybackInterruption'] as core.bool
                : null,
        audio:
            json_.containsKey('audio') ? json_['audio'] as core.String : null,
        uri: json_.containsKey('uri') ? json_['uri'] as core.String : null,
      );