CustomCheckedText constructor

CustomCheckedText(
  1. String data, {
  2. Key? key,
  3. required bool value,
  4. TextStyle? style,
  5. TextAlign? textAlign,
  6. TextDirection? textDirection,
  7. Locale? locale,
  8. bool? softWrap,
  9. TextOverflow? overflow,
  10. int? maxLines,
  11. Color? colorCheck,
  12. Color? colorNormal,
  13. double? fontSize,
  14. bool? clickable,
  15. dynamic onChanged(
    1. bool
    )?,
})

Implementation

CustomCheckedText(
  this.data, {
  Key? key,
  required this.value,
  this.style,
  this.textAlign,
  this.textDirection,
  this.locale,
  this.softWrap,
  this.overflow,
  this.maxLines,
  this.colorCheck,
  this.colorNormal,
  this.fontSize,
  this.clickable,
  this.onChanged,
}) : super(key: key);