GoogleChromeManagementV1TouchScreenInfo.fromJson constructor
GoogleChromeManagementV1TouchScreenInfo.fromJson(
- Map json_
Implementation
GoogleChromeManagementV1TouchScreenInfo.fromJson(core.Map json_)
: this(
devices: json_.containsKey('devices')
? (json_['devices'] as core.List)
.map((value) =>
GoogleChromeManagementV1TouchScreenDevice.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList()
: null,
touchpadLibrary: json_.containsKey('touchpadLibrary')
? json_['touchpadLibrary'] as core.String
: null,
);