operator == method

  1. @override
bool operator ==(
  1. Object other
)
override

Compares two length for equality.

Implementation

@override
bool operator ==(Object other) {
  return other is CSSLengthValue && other.value == value && other.calcValue == calcValue && (isZero || other.type == type);
}