CustomListTileCheckBoxWidget constructor

const CustomListTileCheckBoxWidget({
  1. Key? key,
  2. required String title,
  3. required VoidCallback onTap,
  4. required String subTitle,
  5. Widget? trailing,
  6. Widget? leading,
  7. EdgeInsetsGeometry? contentPadding,
  8. ValueChanged<bool>? onSelect,
  9. bool selector = false,
})

Implementation

const CustomListTileCheckBoxWidget({
  Key? key,
  required this.title,
  required this.onTap,
  required this.subTitle,
  this.trailing,
  this.leading,
  this.contentPadding,
  this.onSelect,
  this.selector = false,
}) : super(key: key);