resolveInstanceMethod static method

bool resolveInstanceMethod(
  1. Pointer<ObjCSelector> sel
)

resolveInstanceMethod:

Implementation

static bool resolveInstanceMethod(ffi.Pointer<objc.ObjCSelector> sel) {
  objc.checkOsVersionInternal(
    'NSObject.resolveInstanceMethod:',
    iOS: (false, (2, 0, 0)),
    macOS: (false, (10, 5, 0)),
  );
  return _objc_msgSend_1srf6wk(
    _class_NSObject,
    _sel_resolveInstanceMethod_,
    sel,
  );
}