appStoreReceiptURL property

NSURL? get appStoreReceiptURL

appStoreReceiptURL

Implementation

NSURL? get appStoreReceiptURL {
  objc.checkOsVersionInternal(
    'NSBundle.appStoreReceiptURL',
    iOS: (false, (7, 0, 0)),
    macOS: (false, (10, 7, 0)),
  );
  final $ret = _objc_msgSend_151sglz(
    object$.ref.pointer,
    _sel_appStoreReceiptURL,
  );
  return $ret.address == 0
      ? null
      : NSURL.fromPointer($ret, retain: true, release: true);
}