dataWithBytesNoCopy static method
dataWithBytesNoCopy:length:
Implementation
static NSMutableData dataWithBytesNoCopy(
ffi.Pointer<ffi.Void> bytes, {
required int length,
}) {
final $ret = _objc_msgSend_3nbx5e(
_class_NSMutableData,
_sel_dataWithBytesNoCopy_length_,
bytes,
length,
);
return NSMutableData.fromPointer($ret, retain: true, release: true);
}