of static method

CorePalette of(
  1. int argb
)

Create a CorePalette from a source ARGB color.

Implementation

static CorePalette of(int argb) {
  final Cam16 cam = Cam16.fromInt(argb);
  return CorePalette._(cam.hue, cam.chroma);
}