CellCheckboxTheme constructor

const CellCheckboxTheme({
  1. Key? key,
  2. required ValueCell<CheckboxThemeData> data,
  3. required ValueCell<Widget> child,
})

Implementation

const CellCheckboxTheme({
  super.key,
  required this.data,
  required this.child,
});