URL property

NSURL? get URL

The URL to the GeoJSON document that specifies the contents of the source.

If the receiver was initialized using -initWithIdentifier:shape:options:, this property is set to nil.

Implementation

objc.NSURL? get URL {
  final _ret = _objc_msgSend_151sglz(this.ref.pointer, _sel_URL);
  return _ret.address == 0 ? null : objc.NSURL.castFromPointer(_ret, retain: true, release: true);
}
set URL (NSURL? value)

The URL to the GeoJSON document that specifies the contents of the source.

If the receiver was initialized using -initWithIdentifier:shape:options:, this property is set to nil.

Implementation

set URL(objc.NSURL? value) {
_objc_msgSend_xtuoz7(this.ref.pointer, _sel_setURL_, value?.ref.pointer ?? ffi.nullptr);

}