URLCache property

NSURLCache? get URLCache

Implementation

NSURLCache? get URLCache {
  final _ret = _lib._objc_msgSend_1037(_id, _lib._sel_URLCache1);
  return _ret.address == 0
      ? null
      : NSURLCache._(_ret, _lib, retain: true, release: true);
}
set URLCache (NSURLCache? value)

Implementation

set URLCache(NSURLCache? value) {
  return _lib._objc_msgSend_1038(
      _id, _lib._sel_setURLCache_1, value?._id ?? ffi.nullptr);
}