Color constructor

Color(
  1. int red,
  2. int green,
  3. int blue
)

Constructs a Color

Implementation

Color(this.red, this.green, this.blue);