update method

void update(
  1. T value
)

Implementation

void update(T value) {
  _currentValue = value;
  _input.add(value);
}