attributionButtonMargins property
CGPoint
get
attributionButtonMargins
A CGPoint indicating the position offset of the attribution.
Implementation
objc.CGPoint get attributionButtonMargins {
final _ptr = pkg_ffi.calloc<objc.CGPoint>();
objc.useMsgSendVariants ? _objc_msgSend_1uwdhlkStret(_ptr, this.ref.pointer, _sel_attributionButtonMargins) : _ptr.ref = _objc_msgSend_1uwdhlk(this.ref.pointer, _sel_attributionButtonMargins);
final _finalizable = _ptr.cast<ffi.Uint8>().asTypedList(
ffi.sizeOf<objc.CGPoint>(), finalizer: pkg_ffi.calloc.nativeFree);
return ffi.Struct.create<objc.CGPoint>(_finalizable);
}
set
attributionButtonMargins
(CGPoint value)
A CGPoint indicating the position offset of the attribution.
Implementation
set attributionButtonMargins(objc.CGPoint value) {
_objc_msgSend_iy8iz6(this.ref.pointer, _sel_setAttributionButtonMargins_, value);
}