dataWithLength static method
dataWithLength:
Implementation
static NSMutableData? dataWithLength(int length) {
final $ret = _objc_msgSend_14hpxwa(
_class_NSMutableData,
_sel_dataWithLength_,
length,
);
return $ret.address == 0
? null
: NSMutableData.fromPointer($ret, retain: true, release: true);
}