decimalPattern method

String decimalPattern([
  1. String? locale
])

format number with intl decimalPattern format

Implementation

String decimalPattern([String? locale]) {
  if (this == null) return '';
  return NumberFormat.decimalPattern(locale).format(this!);
}