copyWith method
Implementation
SliderValue copyWith({
SlidingState? state,
double? factor,
double? offset,
Offset? position,
}) {
return SliderValue(
state: state ?? this.state,
factor: factor ?? this.factor,
offset: offset ?? this.offset,
position: position ?? this.position,
);
}