format static method

String format(
  1. String value
)

Implementation

static String format(String value) {
  return NumberFormat.decimalPattern('en').format(int.parse(value));
}