onTap property

VoidCallback? get onTap

Called when assistive technology activates the node (for example a VoiceOver double tap).

Implementation

VoidCallback? get onTap => _onTap;
set onTap (VoidCallback? value)

Implementation

set onTap(VoidCallback? value) {
  _assertConvenience();
  if (value == _onTap) return;
  _onTap = value;
  _bump();
}