isEqualTo method

bool isEqualTo(
  1. Color? other
)

Implementation

bool isEqualTo(Color? other) {
  return other != null && valueNum == other.valueNum;
}