bind method

CellExcludeSemantics bind({
  1. ValueCell<bool>? excluding,
  2. ValueCell<Widget?>? child,
})

Implementation

CellExcludeSemantics bind({
  ValueCell<bool>? excluding,
  ValueCell<Widget?>? child,
}) =>
    CellExcludeSemantics(
      excluding: excluding ?? this.excluding,
      child: child ?? this.child,
    );