ImpaktfullCheckBoxListItem constructor

const ImpaktfullCheckBoxListItem({
  1. required String title,
  2. required bool value,
  3. required ValueChanged<bool> onSelected,
  4. String? subTitle,
  5. String? leadingAsset,
  6. Key? key,
})

Implementation

const ImpaktfullCheckBoxListItem({
  required this.title,
  required this.value,
  required this.onSelected,
  this.subTitle,
  this.leadingAsset,
  super.key,
});