sqrt method

num sqrt(
  1. num value
)
inherited

Implementation

num sqrt(num value) {
  return math.sqrt(value);
}