hypot static method

double hypot(
  1. double a,
  2. double b
)

Implementation

static double hypot(double a, double b) => math.sqrt(a * a + b * b);