sqrt method

double sqrt()

Returns the square root of the number.

Implementation

double sqrt() => (this > 0) ? math.sqrt(toDouble()) : 0.0;