Srgb constructor

Srgb(
  1. int r,
  2. int g,
  3. int b
)

Implementation

Srgb(int r, int g, int b)
    : this._(
          r.toDouble() / 255.0, g.toDouble() / 255.0, b.toDouble() / 255.0);