Copies bytes into the module heap at ptr in one bulk write.
bytes
ptr
void writeBytes(int ptr, Uint8List bytes) { if (bytes.isEmpty) return; module.heapU8.callMethod<JSAny?>('set'.toJS, bytes.toJS, ptr.toJS); }