ButtonBarThemeModifier constructor
const
ButtonBarThemeModifier({
- Key? key,
- Key? modifierKey,
- Widget? child,
- required ButtonBarThemeData data,
Constructs a button bar theme that configures all descendent ButtonBar widgets.
The data
must not be null.
Implementation
const ButtonBarThemeModifier({
super.key,
super.modifierKey,
super.child,
required this.data,
});