asinh static method Null safety

double asinh(
  1. double x
)

Inverse sinh

Implementation

static double asinh(double x) => dart.log(x + dart.sqrt(x * x + 1));