exp method

double exp(
  1. double x
)

Computes the base-e exponential of x.

Implementation

double exp(double x) => dart_math.exp(x);