CheckboxThemeModifier constructor

const CheckboxThemeModifier({
  1. Key? key,
  2. Widget? child,
  3. Key? modifierKey,
  4. required CheckboxThemeData data,
})

Constructs a checkbox theme that configures all descendant Checkbox widgets.

Implementation

const CheckboxThemeModifier({
  super.key,
  super.child,
  super.modifierKey,
  required this.data,
});