callRequestScan method

Future<void> callRequestScan(
  1. Map<String, DBusValue> options, {
  2. bool noAutoStart = false,
  3. bool allowInteractiveAuthorization = false,
})

Invokes org.freedesktop.NetworkManager.Device.Wireless.RequestScan()

Implementation

Future<void> callRequestScan(Map<String, DBusValue> options, {bool noAutoStart = false, bool allowInteractiveAuthorization = false}) async {
  await callMethod('org.freedesktop.NetworkManager.Device.Wireless', 'RequestScan', [DBusDict.stringVariant(options)], replySignature: DBusSignature(''), noAutoStart: noAutoStart, allowInteractiveAuthorization: allowInteractiveAuthorization);
}