PlutoScaledCheckbox constructor

const PlutoScaledCheckbox({
  1. Key? key,
  2. required bool? value,
  3. required dynamic handleOnChanged(
    1. bool? changed
    ),
  4. bool tristate = false,
  5. double scale = 1.0,
  6. Color unselectedColor = Colors.black26,
  7. Color? activeColor = Colors.lightBlue,
  8. Color checkColor = const Color(0xFFDCF5FF),
})

Implementation

const PlutoScaledCheckbox({
  Key? key,
  required this.value,
  required this.handleOnChanged,
  this.tristate = false,
  this.scale = 1.0,
  this.unselectedColor = Colors.black26,
  this.activeColor = Colors.lightBlue,
  this.checkColor = const Color(0xFFDCF5FF),
}) : super(key: key);