style property

  1. @override
CheckboxStyle style
override

The CheckboxStyle to be applied to the checkbox widget

Implementation

@override
get style => DrivenCheckboxStyle(
      borderColor: colorTheme.outline,
      selectedStyle: CheckboxStyle(
        backgroundColor: colorTheme.primary,
      ),
      indeterminateStyle: CheckboxStyle(
        backgroundColor: colorTheme.primary,
      ),
    ).merge(super.style);