canReboot method

Future<String> canReboot()

Implementation

Future<String> canReboot() {
  return _object
      .callMethod(managerName, 'CanReboot', [],
          replySignature: DBusSignature('s'))
      .then((response) => response.values.first.asString());
}