ignorePointer property Null safety
Whether the painter will be ignored during hit testing.
Implementation
bool get ignorePointer => _ignorePointer;
Implementation
set ignorePointer(bool value) {
if (ignorePointer == value) {
return;
}
_ignorePointer = value;
notifyListeners();
}