CheckBoxColumn<T> constructor

const CheckBoxColumn<T>({
  1. Key? key,
  2. required DataTableController<T> controller,
  3. dynamic onSelectCheckBox(
    1. Map<int, T>
    )?,
})

Implementation

const CheckBoxColumn({
  Key? key,
  required this.controller,
  this.onSelectCheckBox,
}) : super(key: key);