LoadImage method
Load image from file into CPU memory (RAM)
Implementation
@override
ImageD LoadImage(
MemoryPointer<RChar> fileName,
) => $.Image$.RefCapture(
RaylibCaptureIds.LoadImage,
(p) => _ffi.LoadImage(
fileName.asNativePointer(),
).toDart(p.asNativePointer()),
);