acosh static method Null safety

double acosh(
  1. double x
)

Implementation

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