formatNumberWithComma method

String formatNumberWithComma()

for ex. add comma in price

Implementation

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