NumberFormat.decimalPercentPattern constructor
Create a number format that prints as PERCENT_PATTERN.
Implementation
factory NumberFormat.decimalPercentPattern({
String? locale,
int? decimalDigits,
}) => NumberFormat._forPattern(
locale,
(x) => x.PERCENT_PATTERN,
decimalDigits: decimalDigits,
);