appendBytes method

void appendBytes(
  1. Pointer<Void> bytes, {
  2. required int length,
})

appendBytes:length:

Implementation

void appendBytes(ffi.Pointer<ffi.Void> bytes, {required int length}) {
  _objc_msgSend_zuf90e(
    object$.ref.pointer,
    _sel_appendBytes_length_,
    bytes,
    length,
  );
}