greenFromArgb static method

int greenFromArgb(
  1. int argb
)

Returns the green component of a color in ARGB format.

Implementation

static int greenFromArgb(int argb) {
  return argb >> 8 & 255;
}