GoogleChromeManagementV1FindInstalledAppDevicesResponse.fromJson constructor
GoogleChromeManagementV1FindInstalledAppDevicesResponse.fromJson(
- Map json_
Implementation
GoogleChromeManagementV1FindInstalledAppDevicesResponse.fromJson(
core.Map json_)
: this(
devices: (json_['devices'] as core.List?)
?.map((value) => GoogleChromeManagementV1Device.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList(),
nextPageToken: json_['nextPageToken'] as core.String?,
totalSize: json_['totalSize'] as core.int?,
);