formatWithCommas method

String formatWithCommas()

Implementation

String formatWithCommas() {
  return toString().replaceAllMapped(
    RegExp(r'(\d{1,3})(?=(\d{3})+(?!\d))'),
    (Match m) => '${m[1]},',
  );
}