value property

int get value

The current slider value.

Implementation

int get value => _value;
set value (int v)

Sets the current slider value.

Implementation

set value(int v) {
  _value = v;
  _invalidateCache();
}