toLimitedStringWithComma method

String toLimitedStringWithComma(
  1. int fractionDigits
)

Implementation

String toLimitedStringWithComma(int fractionDigits) {
  return this.toStringAsFixed(fractionDigits).replaceAll('.', ',');
}