copyWith method
Implementation
PRectangle copyWith({num? x, num? y, num? width, num? height}) => PRectangle(
x ?? this.x, y ?? this.y, width ?? this.width, height ?? this.height);
PRectangle copyWith({num? x, num? y, num? width, num? height}) => PRectangle(
x ?? this.x, y ?? this.y, width ?? this.width, height ?? this.height);