setPixelRgba method

void setPixelRgba(
  1. int x,
  2. int y,
  3. num r,
  4. num g,
  5. num b,
  6. num a,
)

Set the color of the Pixel at the given coordinates to the given color values r, g, b, and a.

Implementation

void setPixelRgba(int x, int y, num r, num g, num b, num a) =>
    data?.setPixelRgba(x, y, r, g, b, a);