bind method

CellIgnorePointer bind({
  1. ValueCell<bool>? ignoring,
  2. ValueCell<bool?>? ignoringSemantics,
  3. ValueCell<Widget?>? child,
})

Implementation

CellIgnorePointer bind({
  ValueCell<bool>? ignoring,
  ValueCell<bool?>? ignoringSemantics,
  ValueCell<Widget?>? child,
}) =>
    CellIgnorePointer(
      ignoring: ignoring ?? this.ignoring,
      ignoringSemantics: ignoringSemantics ?? this.ignoringSemantics,
      child: child ?? this.child,
    );