insert method

void insert(
  1. int argb
)

Implementation

void insert(int argb) {
  final a = (argb * _HASH_MUL) & 0xffffffff;
  final key = (a >> hashShift);
  colors[key] = argb;
}