callDelete method

Future<void> callDelete({
  1. bool noAutoStart = false,
  2. bool allowInteractiveAuthorization = false,
})

Invokes org.freedesktop.NetworkManager.Settings.Connection.Delete()

Implementation

Future<void> callDelete({bool noAutoStart = false, bool allowInteractiveAuthorization = false}) async {
  await callMethod('org.freedesktop.NetworkManager.Settings.Connection', 'Delete', [], replySignature: DBusSignature(''), noAutoStart: noAutoStart, allowInteractiveAuthorization: allowInteractiveAuthorization);
}