coordinate property
The coordinate point of the shape, specified as a latitude and longitude.
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);
}
set
coordinate
(CLLocationCoordinate2D value)
The coordinate point of the shape, specified as a latitude and longitude.
Implementation
set coordinate(CLLocationCoordinate2D value) {
_objc_msgSend_1zv0am(this.ref.pointer, _sel_setCoordinate_, value);
}