cosh static method Null safety

double cosh(
  1. double x
)

Implementation

static double cosh(double x) => (dart.exp(x) + dart.exp(-x)) / 2;