in skiko/src/commonMain/kotlin/org/jetbrains/skia/paragraph/Shadow.kt [15:22]
override fun equals(other: Any?): Boolean {
if (other === this) return true
if (other !is Shadow) return false
if (color != other.color) return false
if (offsetX.compareTo(other.offsetX) != 0) return false
if (offsetY.compareTo(other.offsetY) != 0) return false
return blurSigma.compareTo(other.blurSigma) == 0
}