sinh static method Null safety

double sinh(
  1. double x
)

Implementation

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