state property

The connection state of this device.

Implementation

NetworkManagerDeviceState get state {
  var value = _object.getUint32Property(_deviceInterfaceName, 'State') ?? 0;
  return _decodeDeviceState(value);
}