GoogleChromeManagementV1ListTelemetryUsersResponse.fromJson constructor

GoogleChromeManagementV1ListTelemetryUsersResponse.fromJson(
  1. Map json_
)

Implementation

GoogleChromeManagementV1ListTelemetryUsersResponse.fromJson(core.Map json_)
    : this(
        nextPageToken: json_.containsKey('nextPageToken')
            ? json_['nextPageToken'] as core.String
            : null,
        telemetryUsers: json_.containsKey('telemetryUsers')
            ? (json_['telemetryUsers'] as core.List)
                .map((value) =>
                    GoogleChromeManagementV1TelemetryUser.fromJson(
                        value as core.Map<core.String, core.dynamic>))
                .toList()
            : null,
      );