copy method

  1. @mustCallSuper
T copy(
  1. T iN
)

Implementation

@mustCallSuper
T copy(T iN) {
  children = iN.children;
  axis = iN.axis;
  return this as T;
}