GoogleChromeManagementV1CountChromeHardwareFleetDevicesResponse.fromJson constructor
GoogleChromeManagementV1CountChromeHardwareFleetDevicesResponse.fromJson(
- Map json_
Implementation
GoogleChromeManagementV1CountChromeHardwareFleetDevicesResponse.fromJson(
core.Map json_,
) : this(
cpuReports: (json_['cpuReports'] as core.List?)
?.map(
(value) =>
GoogleChromeManagementV1DeviceHardwareCountReport.fromJson(
value as core.Map<core.String, core.dynamic>,
),
)
.toList(),
memoryReports: (json_['memoryReports'] as core.List?)
?.map(
(value) =>
GoogleChromeManagementV1DeviceHardwareCountReport.fromJson(
value as core.Map<core.String, core.dynamic>,
),
)
.toList(),
modelReports: (json_['modelReports'] as core.List?)
?.map(
(value) =>
GoogleChromeManagementV1DeviceHardwareCountReport.fromJson(
value as core.Map<core.String, core.dynamic>,
),
)
.toList(),
storageReports: (json_['storageReports'] as core.List?)
?.map(
(value) =>
GoogleChromeManagementV1DeviceHardwareCountReport.fromJson(
value as core.Map<core.String, core.dynamic>,
),
)
.toList(),
);