SliderValue constructor

SliderValue({
  1. SlidingState state = SlidingState.close,
  2. double factor = 0.0,
  3. double offset = 0.0,
  4. Offset position = Offset.zero,
})

Implementation

SliderValue({
  this.state = SlidingState.close,
  this.factor = 0.0,
  this.offset = 0.0,
  this.position = Offset.zero,
});