cryptoBackingDevice property

UDisksBlockDevice? cryptoBackingDevice

The block device that is backing this encrypted device.

Implementation

UDisksBlockDevice? get cryptoBackingDevice {
  var objectPath = _object.getObjectPathProperty(
      _blockInterfaceName, 'CryptoBackingDevice');
  return objectPath != null ? _client._getBlockDevice(objectPath) : null;
}