coordinate property
The center point (specified as a map coordinate) of the annotation. (required) (read-only)
Implementation
CLLocationCoordinate2D get coordinate {
final _ptr = pkg_ffi.calloc<CLLocationCoordinate2D>();
objc.useMsgSendVariants ? _objc_msgSend_18o5nokStret(_ptr, this.ref.pointer, _sel_coordinate) : _ptr.ref = _objc_msgSend_18o5nok(this.ref.pointer, _sel_coordinate);
final _finalizable = _ptr.cast<ffi.Uint8>().asTypedList(
ffi.sizeOf<CLLocationCoordinate2D>(), finalizer: pkg_ffi.calloc.nativeFree);
return ffi.Struct.create<CLLocationCoordinate2D>(_finalizable);
}