formatAsCompactLong method
Formats the number in a long compact form with the given locale.
Implementation
String formatAsCompactLong({String? locale, bool explicitSign = false}) {
return NumberFormat.compactLong(
locale: locale,
explicitSign: explicitSign,
).format(this);
}