attach method

void attach(
  1. SliderValue sliderValue
)

Implementation

void attach(SliderValue sliderValue) {
  _internal = true;
  value = value.copyWith(
    factor: sliderValue.factor,
    offset: sliderValue.offset,
    position: sliderValue.position,
    state: sliderValue.state,
  );
  _internal = false;
}