bind method
Implementation
LiveCupertinoSlider bind({
ValueCell<bool>? enabled,
MutableCell<double>? value,
void Function(double)? onChangeStart,
void Function(double)? onChangeEnd,
double? min,
double? max,
int? divisions,
Color? activeColor,
Color? thumbColor,
}) =>
LiveCupertinoSlider(
enabled: enabled ?? this.enabled,
value: value ?? this.value,
onChangeStart: onChangeStart ?? this.onChangeStart,
onChangeEnd: onChangeEnd ?? this.onChangeEnd,
min: min ?? this.min,
max: max ?? this.max,
divisions: divisions ?? this.divisions,
activeColor: activeColor ?? this.activeColor,
thumbColor: thumbColor ?? this.thumbColor,
);