format number with intl compactLong format
String compactLong([String? locale]) { if (this == null) return ''; return NumberFormat.compactLong(locale: locale).format(this!); }