copy method

dynamic copy(
  1. dynamic source
)
inherited

Implementation

copy(source) {
  arcLengthDivisions = source.arcLengthDivisions;
  type = source.type;

  return this;
}