withBlue method

PdfColor withBlue(
  1. double blue
)

Create a copy of this color with a different blue value

Implementation

PdfColor withBlue(double blue) {
  return PdfColor(red, green, blue, alpha);
}