copy method

VComponent copy()

Copies this component

Implementation

VComponent copy() {
  final copied = instantiate();
  _copyInto(copied);
  return copied;
}