setValue method

void setValue(
  1. T? newValue
)

Implementation

void setValue(T? newValue) {
  value = newValue;
}