largeContentSizeImageInsets property

UIEdgeInsets get largeContentSizeImageInsets

largeContentSizeImageInsets

Implementation

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

setLargeContentSizeImageInsets:

Implementation

set largeContentSizeImageInsets(UIEdgeInsets value) {
  objc.checkOsVersionInternal('UIBarItem.setLargeContentSizeImageInsets:', iOS: (false, (11, 0, 0)));
  _objc_msgSend_1g8fos5(this.ref.pointer, _sel_setLargeContentSizeImageInsets_, value);
}