withValues method

  1. @override
HsbColor withValues(
  1. List<num> values
)
override

Returns a color in this color's color space with the values provided.

values should contain one value for each parameter of the color space; the alpha value is optional.

Implementation

@override
HsbColor withValues(List<num> values) {
  assert(values.length == 3 || values.length == 4);
  assert(values[0] >= 0 && values[0] <= 360);
  assert(values[1] >= 0 && values[1] <= 100);
  assert(values[2] >= 0 && values[2] <= 100);
  if (values.length == 4) assert(values[3] >= 0 && values[3] <= 255);
  return HsbColor.fromList(values);
}