GlowCheckbox constructor

const GlowCheckbox({
  1. Key? key,
  2. double? width,
  3. double? height,
  4. required bool value,
  5. bool enable = true,
  6. EdgeInsetsGeometry? padding,
  7. EdgeInsetsGeometry? margin,
  8. Color? color,
  9. Color? disableColor,
  10. Color? glowColor,
  11. Offset? offset,
  12. double? spreadRadius,
  13. double? blurRadius,
  14. required dynamic onChange(
    1. bool value
    )?,
  15. Color? checkColor,
  16. BoxBorder? border,
  17. Duration? duration,
  18. Curve? curve,
  19. IconData? checkIcon,
})

Implementation

const GlowCheckbox({
  Key? key,
  this.width,
  this.height,
  required this.value,
  this.enable = true,
  this.padding,
  this.margin,
  this.color,
  this.disableColor,
  this.glowColor,
  this.offset,
  this.spreadRadius,
  this.blurRadius,
  required this.onChange,
  this.checkColor,
  this.border,
  this.duration,
  this.curve,
  this.checkIcon,
}) : super(key: key);