GenImageCellular method

ImageD GenImageCellular(
  1. num width,
  2. num height,
  3. num tileSize
)

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(),
    ),
  ),
);