GoogleCloudDialogflowCxV3ResponseMessagePlayAudio.fromJson constructor

GoogleCloudDialogflowCxV3ResponseMessagePlayAudio.fromJson(
  1. Map json_
)

Implementation

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