GoogleCloudDialogflowCxV3ResponseMessageText.fromJson constructor

GoogleCloudDialogflowCxV3ResponseMessageText.fromJson(
  1. Map json_
)

Implementation

GoogleCloudDialogflowCxV3ResponseMessageText.fromJson(core.Map json_)
    : this(
        allowPlaybackInterruption:
            json_.containsKey('allowPlaybackInterruption')
                ? json_['allowPlaybackInterruption'] as core.bool
                : null,
        text: json_.containsKey('text')
            ? (json_['text'] as core.List)
                .map((value) => value as core.String)
                .toList()
            : null,
      );