SfSliderTheme constructor
const
SfSliderTheme({
- required SfSliderThemeData data,
- required Widget child,
- 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);