GoogleChromeManagementV1UsbPeripheralReport.fromJson constructor
GoogleChromeManagementV1UsbPeripheralReport.fromJson(
- Map json_
Implementation
GoogleChromeManagementV1UsbPeripheralReport.fromJson(core.Map json_)
: this(
categories: (json_['categories'] as core.List?)
?.map((value) => value as core.String)
.toList(),
classId: json_['classId'] as core.int?,
firmwareVersion: json_['firmwareVersion'] as core.String?,
name: json_['name'] as core.String?,
pid: json_['pid'] as core.int?,
subclassId: json_['subclassId'] as core.int?,
vendor: json_['vendor'] as core.String?,
vid: json_['vid'] as core.int?,
);