CheckListTile constructor

const CheckListTile({
  1. Key? key,
  2. required String text,
  3. bool isChecked = true,
})

Implementation

const CheckListTile({super.key, required this.text, this.isChecked = true});