blueFromArgb static method

int blueFromArgb(
  1. int argb
)

Returns the blue component of a color in ARGB format.

Implementation

static int blueFromArgb(int argb) {
  return argb & 255;
}