clone method

T clone(
  1. T instance
)

Clones the instance.

Implementation

T clone(T instance) {
  return instance;
}