Checks if this number is approximately equal to other within a tolerance.
other
tolerance
bool isApproximatelyEqual(num other, {double tolerance = 0.01}) { return (this - other).abs() <= tolerance; }