FCheckboxStyle constructor

FCheckboxStyle({
  1. required FLabelLayoutStyle labelLayoutStyle,
  2. required FCheckboxStateStyle enabledStyle,
  3. required FCheckboxStateStyle disabledStyle,
  4. required FCheckboxErrorStyle errorStyle,
  5. Duration animationDuration = const Duration(milliseconds: 100),
  6. Curve curve = Curves.linear,
})

Creates a FCheckboxStyle.

Implementation

FCheckboxStyle({
  required this.labelLayoutStyle,
  required this.enabledStyle,
  required this.disabledStyle,
  required this.errorStyle,
  this.animationDuration = const Duration(milliseconds: 100),
  this.curve = Curves.linear,
});