copyWith method
Copies the plane.
Implementation
PointPlane3D copyWith({
Axis3D? axis,
double? size,
double? gap,
Vector3? position,
Color? color,
double? pointWidth,
}) {
return PointPlane3D(
size ?? this.size,
axis ?? this.axis,
gap ?? this.gap,
position ?? this.position,
color: color ?? this.color,
pointWidth: pointWidth ?? this.pointWidth,
);
}