fromJSON static method
Implementation
static UsbDevice fromJSON(dynamic json) {
return UsbDevice(
json["deviceName"],
json["vid"],
json["pid"],
json["productName"],
json["manufacturerName"],
json["deviceId"],
json["serialNumber"],
json["interfaceCount"]);
}