GrxCheckboxListTile constructor

const GrxCheckboxListTile({
  1. Key? key,
  2. required String title,
  3. bool value = false,
  4. void onTap()?,
  5. bool enabled = true,
  6. bool isLoading = false,
})

Implementation

const GrxCheckboxListTile({
  super.key,
  required this.title,
  this.value = false,
  this.onTap,
  this.enabled = true,
  this.isLoading = false,
});