setContentScrollView method
Aggregate values (e.g., NSDirectionalRectEdgeAll) are accepted in the edge parameter; NSDirectionalRectEdgeLeading and Trailing are ignored on iOS 15.0
Implementation
void setContentScrollView(UIScrollView? scrollView, {required int forEdge}) {
final _$$ref = object$.ref;
final _$$ref$1 = scrollView?.ref;
objc.checkOsVersionInternal('UIViewController.setContentScrollView:forEdge:', iOS: (false, (15, 0, 0)));
_objc_msgSend_13y7vr7(
_$$ref.pointer,
_sel_setContentScrollView_forEdge_,
_$$ref$1?.pointer ?? ffi.nullptr,
forEdge,
);
}