operator < method
Operadores de comparación
Implementation
bool operator <(dynamic other) {
final otherNum = _toNumber(other);
return _value < otherNum._value;
}
Operadores de comparación
bool operator <(dynamic other) {
final otherNum = _toNumber(other);
return _value < otherNum._value;
}