Get the value of the blue channel at the given pixel coordinates x, y.
x
y
num getBlue(int x, int y) => blue != null ? blue!.isFloat ? blue!.getFloat(x, y) : blue!.getInt(x, y) : 0;