GoogleChromeManagementV1GraphicsStatusReport.fromJson constructor
GoogleChromeManagementV1GraphicsStatusReport.fromJson(
- Map json_
Implementation
GoogleChromeManagementV1GraphicsStatusReport.fromJson(core.Map json_)
: this(
displays:
(json_['displays'] as core.List?)
?.map(
(value) => GoogleChromeManagementV1DisplayInfo.fromJson(
value as core.Map<core.String, core.dynamic>,
),
)
.toList(),
reportTime: json_['reportTime'] as core.String?,
);