numberWithInt static method

NSNumber numberWithInt(
  1. int value
)

numberWithInt:

Implementation

static NSNumber numberWithInt(int value) {
  final $ret = _objc_msgSend_14hvw5k(
    _class_NSNumber,
    _sel_numberWithInt_,
    value,
  );
  return NSNumber.fromPointer($ret, retain: true, release: true);
}