expressionForFunction$1 static method

NSExpression expressionForFunction$1(
  1. NSExpression target, {
  2. required NSString selectorName,
  3. NSArray? arguments,
})

expressionForFunction:selectorName:arguments:

Implementation

static NSExpression expressionForFunction$1(NSExpression target, {required objc.NSString selectorName,objc.NSArray? arguments}) {
objc.checkOsVersionInternal('NSExpression.expressionForFunction:selectorName:arguments:', iOS: (false, (3, 0, 0)), macOS: (false, (10, 5, 0)));
  final _ret = _objc_msgSend_11spmsz(_class_NSExpression, _sel_expressionForFunction_selectorName_arguments_, target.ref.pointer, selectorName.ref.pointer, arguments?.ref.pointer ?? ffi.nullptr);
  return NSExpression.castFromPointer(_ret, retain: true, release: true);
}