log10 method

double log10(
  1. double x
)

Computes the base-10 logarithm of x.

Implementation

double log10(double x) => dart_math.log(x) / dart_math.ln10;