GenImageChecked method
Implementation
ImageD GenImageChecked(
num width,
num height,
num checksX,
num checksY,
ColorD col1,
ColorD col2,
) => run(
() => 'GenImageChecked($width, $height, $checksX, $checksY, $col1, $col2)',
() => _refCaptureImage(
'GenImageChecked_${width}_$height',
rl.Core.GenImageChecked(
width.toInt(),
height.toInt(),
checksX.toInt(),
checksY.toInt(),
_refColor1(col1).ref,
_refColor2(col2).ref,
),
),
);