atanh static method Null safety

double atanh(
  1. double x
)

Implementation

static double atanh(double x) => 0.5 * dart.log((1 + x) / (1 - x));