equals method
Compara dos números considerando su precisión
Implementation
bool equals(dynamic other) {
final otherNum = _toNumber(other);
return _value == otherNum._value;
}
Compara dos números considerando su precisión
bool equals(dynamic other) {
final otherNum = _toNumber(other);
return _value == otherNum._value;
}