copy method

  1. @override
Cell<T> copy()
override

Shallow copy of this Cell.

Implementation

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