GetPixelDataSize method
Implementation
int GetPixelDataSize(
num width,
num height,
PixelFormat format,
) => run(
() => 'GetPixelDataSize($width, $height, $format)',
() => rl.Core.GetPixelDataSize(
width.toInt(),
height.toInt(),
format.value,
),
);