setDesktopId method

Future<void> setDesktopId(
  1. String id
)

Sets the desktop file ID (the basename of the desktop file). To take effect, must be used before calling start.

This property must be set by applications for authorization to work.

See also:

Implementation

Future<void> setDesktopId(String id) {
  return _setProperty('DesktopId', DBusString(id));
}