copy method

  1. @override
dynamic copy(
  1. dynamic source
)
override

Implementation

@override
copy(source) {
  super.copy(source);

  currentPoint.copy(source.currentPoint);

  return this;
}