landscapeImagePhoneInsets property
UIEdgeInsets
get
landscapeImagePhoneInsets
landscapeImagePhoneInsets
Implementation
UIEdgeInsets get landscapeImagePhoneInsets {
objc.checkOsVersionInternal('UIBarItem.landscapeImagePhoneInsets', iOS: (false, (5, 0, 0)));
final _ptr = pkg_ffi.calloc<UIEdgeInsets>();
objc.useMsgSendVariants
? _objc_msgSend_ct4cu5Stret(_ptr, this.ref.pointer, _sel_landscapeImagePhoneInsets)
: _ptr.ref = _objc_msgSend_ct4cu5(this.ref.pointer, _sel_landscapeImagePhoneInsets);
final _finalizable = _ptr.cast<ffi.Uint8>().asTypedList(
ffi.sizeOf<UIEdgeInsets>(),
finalizer: pkg_ffi.calloc.nativeFree,
);
return ffi.Struct.create<UIEdgeInsets>(_finalizable);
}
set
landscapeImagePhoneInsets
(UIEdgeInsets value)
setLandscapeImagePhoneInsets:
Implementation
set landscapeImagePhoneInsets(UIEdgeInsets value) {
objc.checkOsVersionInternal('UIBarItem.setLandscapeImagePhoneInsets:', iOS: (false, (5, 0, 0)));
_objc_msgSend_1g8fos5(this.ref.pointer, _sel_setLandscapeImagePhoneInsets_, value);
}