withBlue method

int withBlue(
  1. int b
)

Returns a new ARGB integer with the updated blue value (0-255).

Implementation

int withBlue(int b) => (this & 0xFFFFFF00) | (b & 0xFF);