dataWithBytes static method
dataWithBytes:length:
Implementation
static NSData dataWithBytes(
ffi.Pointer<ffi.Void> bytes, {
required int length,
}) {
final $ret = _objc_msgSend_3nbx5e(
_class_NSData,
_sel_dataWithBytes_length_,
bytes,
length,
);
return NSData.fromPointer($ret, retain: true, release: true);
}