bind method

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

Implementation

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