callRefresh method
Invokes org.freedesktop.UPower.Device.Refresh()
Implementation
Future<void> callRefresh({
bool noAutoStart = false,
bool allowInteractiveAuthorization = false,
}) async {
await callMethod(
'org.freedesktop.UPower.Device',
'Refresh',
[],
replySignature: DBusSignature(''),
noAutoStart: noAutoStart,
allowInteractiveAuthorization: allowInteractiveAuthorization,
);
}