expSafe function

double expSafe(
  1. num x
)

Exp transform.

Implementation

double expSafe(num x) => exp(x.toDouble());