insertSubview$1 method

void insertSubview$1(
  1. UIView view, {
  2. required UIView belowSubview,
})

insertSubview:belowSubview:

Implementation

void insertSubview$1(UIView view, {required UIView belowSubview}) {
  objc.checkOsVersionInternal('UIView.insertSubview:belowSubview:', iOS: (false, (2, 0, 0)));
  _objc_msgSend_pfv6jd(
    this.ref.pointer,
    _sel_insertSubview_belowSubview_,
    view.ref.pointer,
    belowSubview.ref.pointer,
  );
}