compassViewMargins property

CGPoint get compassViewMargins

A CGPoint indicating the position offset of the compass.

Implementation

objc.CGPoint get compassViewMargins {
  final _ptr = pkg_ffi.calloc<objc.CGPoint>();
  objc.useMsgSendVariants ? _objc_msgSend_1uwdhlkStret(_ptr, this.ref.pointer, _sel_compassViewMargins) : _ptr.ref = _objc_msgSend_1uwdhlk(this.ref.pointer, _sel_compassViewMargins);
  final _finalizable = _ptr.cast<ffi.Uint8>().asTypedList(
      ffi.sizeOf<objc.CGPoint>(), finalizer: pkg_ffi.calloc.nativeFree);
  return ffi.Struct.create<objc.CGPoint>(_finalizable);

}
set compassViewMargins (CGPoint value)

A CGPoint indicating the position offset of the compass.

Implementation

set compassViewMargins(objc.CGPoint value) {
_objc_msgSend_iy8iz6(this.ref.pointer, _sel_setCompassViewMargins_, value);

}