start method

void start()

Sets the first value as the current and notify its listeners right after.

Implementation

void start() {
  value = _values.first;
  notifyListeners();
}