withBlue method

PdfColor withBlue(
  1. double blue
)

Returns a copy with a different blue value.

Implementation

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