DrawRectangleGradientV method
void
DrawRectangleGradientV()
Implementation
void DrawRectangleGradientV(
num posX,
num posY,
num width,
num height,
ColorD top,
ColorD bottom,
) => run(
() => 'DrawRectangleGradientV($posX, $posY, $width, $height, $top, $bottom)',
() => rl.Core.DrawRectangleGradientV(
posX.toInt(),
posY.toInt(),
width.toInt(),
height.toInt(),
rl.Temp.Color$.Ref1(top).ref,
rl.Temp.Color$.Ref2(bottom).ref,
),
);