setValue method
Changes the slider to value.
Implementation
void setValue(double value) {
if (this.value == value) return;
this.value = value;
}
Changes the slider to value.
void setValue(double value) {
if (this.value == value) return;
this.value = value;
}