getAlpha method

  1. @override
  2. @nonVirtual
int getAlpha(
  1. int pixel
)
inherited

Returns the alpha channel value of the pixel.

Implementation

@override
@nonVirtual
int getAlpha(int pixel) => (pixel >> _offsetAlpha) & 0xFF;