set method

void set(
  1. T value
)

Rebinds the reference to a completely new value.

Implementation

void set(T value) {
  _value = value;
}