copyWith method

  1. @override
VectorPathCommandLine copyWith({
  1. Point? endPoint,
})
override

Implementation

@override
VectorPathCommandLine copyWith({
  Point? endPoint,
}) => VectorPathCommandLine(
  endPoint: endPoint ?? this.endPoint,
);