SliderTheme constructor

const SliderTheme({
  1. Key? key,
  2. required SliderThemeData data,
  3. required Widget child,
})

Creates a slider theme that controls the configurations for Slider.

Implementation

const SliderTheme({
  Key? key,
  required this.data,
  required Widget child,
}) : super(key: key, child: child);