bind method

Implementation

CellCheckboxTheme bind({
  ValueCell<CheckboxThemeData>? data,
  ValueCell<Widget>? child,
}) =>
    CellCheckboxTheme(
      data: data ?? this.data,
      child: child ?? this.child,
    );