beginAnimations static method

void beginAnimations(
  1. NSString? animationID, {
  2. required Pointer<Void> context,
})

beginAnimations:context:

Implementation

static void beginAnimations(objc.NSString? animationID, {required ffi.Pointer<ffi.Void> context}) {
  objc.checkOsVersionInternal('UIView.beginAnimations:context:', iOS: (false, (2, 0, 0)));
  _objc_msgSend_1lzqwav(
    _class_UIView,
    _sel_beginAnimations_context_,
    animationID?.ref.pointer ?? ffi.nullptr,
    context,
  );
}