onTap property
Called when assistive technology activates the node (for example a VoiceOver double tap).
Implementation
VoidCallback? get onTap => _onTap;
Implementation
set onTap(VoidCallback? value) {
_assertConvenience();
if (value == _onTap) return;
_onTap = value;
_bump();
}