allocateInto method
Implementation
@override
void allocateInto(RaylibTemp temp, Pointer<ImageC> p, String key) {
p.ref.width = width;
p.ref.height = height;
p.ref.mipmaps = mipmaps;
p.ref.format = format.value;
p.ref.data = temp.UInt8$.RawArray(data).cast();
}