I read a file var list = await file.readAsBytes(); and want to copy it to clang Pointer<Uint8> buf = malloc.allocate(list.length);. I know I can do it for (var i = 0; i < list.length; i++) buf.elementAt(i).value = list[i];. Is there anther method to do it just like clang memcpy?