TCheckBox constructor

const TCheckBox({
  1. Key? key,
  2. required String title,
  3. required bool isSelected,
  4. dynamic onChange(
    1. bool
    )?,
  5. bool isDisabled = false,
})

Implementation

const TCheckBox({
  Key? key,
  required this.title,
  required this.isSelected,
  this.onChange,
  this.isDisabled=false
}) : super(key: key);