double distance

The magnitude of the offset.

If you need this value to compare it to another Offset's distance, consider using distanceSquared instead, since it is cheaper to compute.

Source

double get distance => math.sqrt(_dx * _dx + _dy * _dy);