operator == method
- dynamic other
override
Returns true
if this Measurement has the same value as other
.
Implementation
@override
bool operator ==(dynamic other) =>
other is T && (_baseValue == other._baseValue);
Returns true
if this Measurement has the same value as other
.
@override
bool operator ==(dynamic other) =>
other is T && (_baseValue == other._baseValue);