operator == method Null safety
- covariant Angle rhs
override
Compares to another angle. Since IEEE 754 floating points are approximations to real numbers, they cannot be really tested for equality.
Implementation
@override
bool operator ==(covariant final Angle rhs) => _storage == rhs._storage;