collisionBoundingPath property

UIBezierPath get collisionBoundingPath

collisionBoundingPath

Implementation

UIBezierPath get collisionBoundingPath {
objc.checkOsVersionInternal('UIView.collisionBoundingPath', iOS: (false, (9, 0, 0)));
  if (!objc.respondsToSelector(this.ref.pointer, _sel_collisionBoundingPath)) {
    throw objc.UnimplementedOptionalMethodException(
        'UIView', 'collisionBoundingPath');
  }
  final _ret = _objc_msgSend_151sglz(this.ref.pointer, _sel_collisionBoundingPath);
  return UIBezierPath.castFromPointer(_ret, retain: true, release: true);
}