fillBottomUpGradient method

void fillBottomUpGradient(
  1. num x,
  2. num y,
  3. num width,
  4. num height,
  5. PColor colorFrom,
  6. PColor colorTo,
)

Fill a rectangle (x,y , width x height) with a bottom up linear gradient. See fillTopDownGradient.

Implementation

void fillBottomUpGradient(num x, num y, num width, num height,
        PColor colorFrom, PColor colorTo) =>
    fillTopDownGradient(x, y, width, height, colorTo, colorFrom);