setValue method

void setValue(
  1. T value
)

Sets value for ValueNotifier.value.

Implementation

void setValue(T value) {
  this.value = value;
}