toCMYKString method

String toCMYKString()

CMYK string

Implementation

String toCMYKString() {
  return "cmyk(${(_cyan! * 100).round()}%, ${(_magenta! * 100).round()}%, ${(_yellow! * 100).round()}%, ${(_black! * 100).round()}%)";
}