collisionBoundsType property

UIDynamicItemCollisionBoundsType get collisionBoundsType

The collision type represents how the dynamics system will evaluate collisions with respect to the dynamic item. defaults to UIDynamicItemCollisionBoundsTypeRectangle

Implementation

UIDynamicItemCollisionBoundsType get collisionBoundsType {
  objc.checkOsVersionInternal('UIView.collisionBoundsType', iOS: (false, (9, 0, 0)));
  if (!objc.respondsToSelector(this.ref.pointer, _sel_collisionBoundsType)) {
    throw objc.UnimplementedOptionalMethodException('UIView', 'collisionBoundsType');
  }
  final _ret = _objc_msgSend_k9iunc(this.ref.pointer, _sel_collisionBoundsType);
  return UIDynamicItemCollisionBoundsType.fromValue(_ret);
}