copyWith method

LinuxNotificationLocation copyWith({
  1. int? x,
  2. int? y,
})

Creates a copy of this object, but with the given fields replaced with the new values.

Implementation

LinuxNotificationLocation copyWith({
  int? x,
  int? y,
}) =>
    LinuxNotificationLocation(x ?? this.x, y ?? this.y);