callClose method

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

Invokes org.freedesktop.portal.Request.Close()

Implementation

Future<void> callClose(
    {bool noAutoStart = false,
    bool allowInteractiveAuthorization = false}) async {
  await callMethod('org.freedesktop.portal.Request', 'Close', [],
      replySignature: DBusSignature(''),
      noAutoStart: noAutoStart,
      allowInteractiveAuthorization: allowInteractiveAuthorization);
}