ButtonBarThemeModifier constructor

const ButtonBarThemeModifier({
  1. Key? key,
  2. Key? modifierKey,
  3. Widget? child,
  4. 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,
});