updateShouldNotify method
Whether dependents should rebuild when callbacks change.
Implementation
@override
/// Whether dependents should rebuild when callbacks change.
bool updateShouldNotify(M3ETappableInkScope oldWidget) {
return onTap != oldWidget.onTap ||
onLongPress != oldWidget.onLongPress ||
mouseCursor != oldWidget.mouseCursor ||
onTapDown != oldWidget.onTapDown ||
onTapUp != oldWidget.onTapUp ||
onTapCancel != oldWidget.onTapCancel ||
onHover != oldWidget.onHover;
}