RenderCustomCheckbox constructor

RenderCustomCheckbox(
  1. double strokeWidth,
  2. Color strokeColor,
  3. Color fillColor,
  4. Color normalBorderColor,
  5. bool value,
  6. double radius,
  7. ValueChanged<bool>? onChanged,
)

Implementation

RenderCustomCheckbox(this.strokeWidth, this.strokeColor, this.fillColor,
    this.normalBorderColor, this.value, this.radius, this.onChanged) {
  progress = value ? 1 : 0;
}