isPointerInteractionEnabled property

bool get isPointerInteractionEnabled

Enables this button's built-in pointer interaction.

Implementation

bool get isPointerInteractionEnabled {
  final _$$ref = object$.ref;
  objc.checkOsVersionInternal('UIButton.isPointerInteractionEnabled', iOS: (false, (13, 4, 0)));
  return _objc_msgSend_91o635(_$$ref.pointer, _sel_isPointerInteractionEnabled);
}
set isPointerInteractionEnabled (bool value)

Enables this button's built-in pointer interaction.

Implementation

set isPointerInteractionEnabled(bool value) {
  final _$$ref = object$.ref;
  objc.checkOsVersionInternal('UIButton.setPointerInteractionEnabled:', iOS: (false, (13, 4, 0)));
  _objc_msgSend_1s56lr9(_$$ref.pointer, _sel_setPointerInteractionEnabled_, value);
}