GoogleCloudDialogflowCxV3PlaybookStep.fromJson constructor

GoogleCloudDialogflowCxV3PlaybookStep.fromJson(
  1. Map json_
)

Implementation

GoogleCloudDialogflowCxV3PlaybookStep.fromJson(core.Map json_)
  : this(
      steps: (json_['steps'] as core.List?)
          ?.map(
            (value) => GoogleCloudDialogflowCxV3PlaybookStep.fromJson(
              value as core.Map<core.String, core.dynamic>,
            ),
          )
          .toList(),
      text: json_['text'] as core.String?,
    );