SfSliderTheme constructor

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

Applies the given theme data to child.

The data and child arguments must not be null.

Implementation

const SfSliderTheme({required this.data, required this.child, super.key})
  : super(child: child);