GoogleChromeManagementVersionsV1ListConnectorConfigsResponse.fromJson constructor

GoogleChromeManagementVersionsV1ListConnectorConfigsResponse.fromJson(
  1. Map json_
)

Implementation

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