executableArchitectures property

NSArray? get executableArchitectures

executableArchitectures

Implementation

NSArray? get executableArchitectures {
  objc.checkOsVersionInternal(
    'NSBundle.executableArchitectures',
    iOS: (false, (2, 0, 0)),
    macOS: (false, (10, 5, 0)),
  );
  final $ret = _objc_msgSend_151sglz(
    object$.ref.pointer,
    _sel_executableArchitectures,
  );
  return $ret.address == 0
      ? null
      : NSArray.fromPointer($ret, retain: true, release: true);
}