toStringAsExponential method
Converts a num to a string in decimal exponential notation with
fractionDigits digits after the decimal point.
Implementation
String toStringAsExponential([int? fractionDigits]) =>
toDouble().toStringAsExponential(fractionDigits);