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