GoogleCloudDialogflowCxV3Form.fromJson constructor

GoogleCloudDialogflowCxV3Form.fromJson(
  1. Map json_
)

Implementation

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