OcDevice.fromDevice constructor

OcDevice.fromDevice(
  1. Device d
)

Implementation

factory OcDevice.fromDevice(Device d) {
  return OcDevice(
    deviceParameter: OcDeviceParameter.fromXML(d.deviceParameter.toXML()),
    deviceIndex: d.deviceIndex,
    deviceName: d.deviceName,
    deviceParameterType: d.deviceParameterType,
    supportedInterfaceModes: d.supportedInterfaceModes,
    devices: d.devices,
  );
}