copyWith method
Implementation
WindowRectanglesCompanion copyWith(
{Value<int>? id,
Value<double?>? width,
Value<double?>? height,
Value<double?>? dx,
Value<double?>? dy}) {
return WindowRectanglesCompanion(
id: id ?? this.id,
width: width ?? this.width,
height: height ?? this.height,
dx: dx ?? this.dx,
dy: dy ?? this.dy,
);
}