delete method

Future<void> delete()

Deletes a software device from NetworkManager and removes the interface from the system. The method returns an error when called for a hardware device.

Implementation

Future<void> delete() async {
  await _object.callMethod(_deviceInterfaceName, 'Delete', [],
      replySignature: DBusSignature(''));
}