GnCheckboxWithText constructor

const GnCheckboxWithText({
  1. Key? key,
  2. required bool value,
  3. void onChanged(
    1. bool? value
    )?,
  4. Color? checkColor,
  5. Color? activeColor,
  6. Color? borderColor,
  7. double? scale,
  8. required String title,
  9. double? fontSize,
  10. Color? fontColor,
  11. bool? isExpanded = false,
})

Implementation

const GnCheckboxWithText(
    {super.key,
    required this.value,
    this.onChanged,
    this.checkColor,
    this.activeColor,
    this.borderColor,
    this.scale,
    required this.title,
    this.fontSize,
    this.fontColor,
    this.isExpanded = false});