static String valNumber(int? value, {String? locale}) { return NumberFormat.decimalPattern(locale ?? defaultLocale) .format(value ?? 0); }