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