Color.this - multiple declarations

Function Color.this

Instantiate a Color given whole integer components in the range 0 through 255.

this (
  int r,
  int g,
  int b,
  int a = 255
);

Throws

A RangeError if any of the given color components are outside the range 0 through 255.

Function Color.this

Instantiate a Color given double components in the range 0.0 through 1.0.

this (
  double r,
  double g,
  double b,
  double a = 1.0
);

Throws

A RangeError if any of the given color components are outside the range 0.0 through 1.0.