ToggleButtonsThemeModifier constructor
      const
      ToggleButtonsThemeModifier({ 
    
- Key? key,
- Widget? child,
- Key? modifierKey,
- required ToggleButtonsThemeData data,
Creates a toggle buttons theme that controls the color and border parameters for ToggleButtons.
The data argument must not be null.
Implementation
const ToggleButtonsThemeModifier({
  super.key,
  super.child,
  super.modifierKey,
  required this.data,
});