GoogleCloudDialogflowCxV3ResponseMessageText.fromJson constructor

GoogleCloudDialogflowCxV3ResponseMessageText.fromJson(
  1. Map json_
)

Implementation

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