CheckboxCell constructor

CheckboxCell({
  1. GlobalKey<State<StatefulWidget>>? key,
  2. bool checked = false,
  3. required String title,
  4. ValueChanged<ValueChanged<String>>? onTap,
  5. String? detail,
  6. Color? titleColor,
  7. Color? detailColor,
  8. required ValueChanged<bool> onChecked,
  9. bool isAsync = false,
})

Implementation

CheckboxCell({
  GlobalKey? key,
  this.checked = false,
  required this.title,
  this.onTap,
  this.detail,
  this.titleColor,
  this.detailColor,
  required this.onChecked,
  this.isAsync = false,
}) : super(key: key);