bind method
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,
);