close method

Future<void> close()

Closes this notification.

Implementation

Future<void> close() async {
  await client._object.callMethod(
      'org.freedesktop.Notifications', 'CloseNotification', [DBusUint32(id)],
      replySignature: DBusSignature(''));
}