getBlue function

int getBlue(
  1. int color
)

Get the blue channel from the color.

Implementation

int getBlue(int color) => (color >> 16) & 0xff;