NumberFormat.percentPattern constructor

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

Create a number format that prints as PERCENT_PATTERN.

Implementation

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