NotificationHint.location constructor

NotificationHint.location(
  1. int x,
  2. int y
)

This notification should be placed at the given x and y co-ordinates.

Implementation

factory NotificationHint.location(int x, int y) {
  return NotificationHint(
      '*location', DBusStruct([DBusInt32(x), DBusInt32(y)]));
}