asinh method

double asinh()

Returns the hyperbolic arc-sine of this num.

Implementation

double asinh() => isInfinite && isNegative
    ? toDouble()
    : (this + (this * this + 1).sqrt()).log();