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