GenImageCellular method
Implementation
ImageD GenImageCellular(
num width,
num height,
num tileSize,
) => run(
() => 'GenImageCellular($width, $height, $tileSize)',
() => _refCaptureImage(
'GenImageCellular_${width}_$height',
rl.Core.GenImageCellular(
width.toInt(),
height.toInt(),
tileSize.toInt(),
),
),
);