sqrt method

double sqrt(
  1. double x
)

Computes the non-negative square root of x.

Implementation

double sqrt(double x) => dart_math.sqrt(x);