GoogleChromeManagementV1ListTelemetryNotificationConfigsResponse.fromJson constructor
GoogleChromeManagementV1ListTelemetryNotificationConfigsResponse.fromJson(
- Map json_
Implementation
GoogleChromeManagementV1ListTelemetryNotificationConfigsResponse.fromJson(
core.Map json_,
) : this(
nextPageToken: json_['nextPageToken'] as core.String?,
telemetryNotificationConfigs:
(json_['telemetryNotificationConfigs'] as core.List?)
?.map(
(value) =>
GoogleChromeManagementV1TelemetryNotificationConfig.fromJson(
value as core.Map<core.String, core.dynamic>,
),
)
.toList(),
);