toStringAsExponential method

String toStringAsExponential([
  1. int? fractionDigits
])

Converts a num to a string in decimal exponential notation with fractionDigits digits after the decimal point.

Implementation

String toStringAsExponential([int? fractionDigits]) =>
    _rational.toStringAsExponential(fractionDigits);