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