setValue method

void setValue(
  1. T data
)

Implementation

void setValue(T data) {
  _data = data;
  _version++;
  dispatchingValue(null);
}