GoogleCloudDialogflowCxV3ListFlowsResponse.fromJson constructor

GoogleCloudDialogflowCxV3ListFlowsResponse.fromJson(
  1. Map json_
)

Implementation

GoogleCloudDialogflowCxV3ListFlowsResponse.fromJson(core.Map json_)
  : this(
      flows: (json_['flows'] as core.List?)
          ?.map(
            (value) => GoogleCloudDialogflowCxV3Flow.fromJson(
              value as core.Map<core.String, core.dynamic>,
            ),
          )
          .toList(),
      nextPageToken: json_['nextPageToken'] as core.String?,
    );