log method

double log(
  1. double x
)

Computes the natural (base-e) logarithm of x.

Implementation

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