signatureWithObjCTypes static method

NSMethodSignature? signatureWithObjCTypes(
  1. Pointer<Char> types
)

signatureWithObjCTypes:

Implementation

static NSMethodSignature? signatureWithObjCTypes(
  ffi.Pointer<ffi.Char> types,
) {
  final $ret = _objc_msgSend_56zxyn(
    _class_NSMethodSignature,
    _sel_signatureWithObjCTypes_,
    types,
  );
  return $ret.address == 0
      ? null
      : NSMethodSignature.fromPointer($ret, retain: true, release: true);
}