CheckboxComponent constructor

const CheckboxComponent({
  1. bool initialValue = false,
  2. Color iconColor = Colors.black,
  3. Color checkedBorderColor = Colors.black,
  4. Color checkedFillColor = Colors.white,
  5. IconData iconData = Icons.check,
  6. void onChanged(
    1. bool
    )?,
  7. Key? key,
})

Implementation

const CheckboxComponent(
    {this.initialValue = false,
    this.iconColor = Colors.black,
    this.checkedBorderColor = Colors.black,
    this.checkedFillColor = Colors.white,
    this.iconData = Icons.check,
    this.onChanged,
    Key? key})
    : super(key: key);