scientificNotationValue function

double scientificNotationValue(
  1. int exponent
)

Implementation

double scientificNotationValue(int exponent) {
  return double.parse('1e$exponent');
}