NumberFormat.scientificPattern constructor

NumberFormat.scientificPattern([
  1. String? locale
])

Create a number format that prints as SCIENTIFIC_PATTERN.

Implementation

factory NumberFormat.scientificPattern([String? locale]) =>
    NumberFormat._forPattern(locale, (x) => x.SCIENTIFIC_PATTERN);