addScalar method

Color addScalar(
  1. num s
)

Implementation

Color addScalar(num s) {
  r += s;
  g += s;
  b += s;

  return this;
}