getColorRgb static method

int getColorRgb(
  1. int red,
  2. int green,
  3. int blue, [
  4. int a = 255,
])

Implementation

static int getColorRgb(int red, int green, int blue, [int a = 255]) =>
    (red << 16) + (green << 8) + blue + (a << 24);