copy method

Cell<T> copy()

Shallow copy of this.

Implementation

@pragma("vm:prefer-inline")
Cell<T> copy() {
  return Cell(_val);
}