RgbColour constructor

RgbColour(
  1. int? red,
  2. int? green,
  3. int? blue
)

Implementation

RgbColour(int? red, int? green, int? blue)
{
  this.red = red ?? _INITIAL_VALUE;
  this.green = green ?? _INITIAL_VALUE;
  this.blue = blue  ?? _INITIAL_VALUE;
}