clone method

void clone(
  1. Region source
)

Set the data from the source.

Implementation

void clone(Region source) {
  start.clone(source.start);
  end.clone(source.end);
}