secondAnchor property

NSLayoutAnchor? get secondAnchor

secondAnchor

Implementation

NSLayoutAnchor? get secondAnchor {
  objc.checkOsVersionInternal(
    'NSLayoutConstraint.secondAnchor',
    iOS: (false, (10, 0, 0)),
    macOS: (false, (10, 12, 0)),
  );
  final _ret = _objc_msgSend_151sglz(this.ref.pointer, _sel_secondAnchor);
  return _ret.address == 0 ? null : NSLayoutAnchor.castFromPointer(_ret, retain: true, release: true);
}