NumericInputFormatting extension
WARNING! This stuff requires Dart SDK version 2.6+ so if your code is supposed to be running on older versions do not use these methods! or change the sdk restrictions in your pubspec.yaml like this: environment: sdk: ">=2.6.0 <3.0.0"
- on
Methods
-
toCurrencyString(
{int mantissaLength = 2, ThousandSeparator thousandSeparator = ThousandSeparator.Comma, ShorteningPolicy shorteningPolicy = ShorteningPolicy.NoShortening, String leadingSymbol = '', String trailingSymbol = '', bool useSymbolPadding = false}) → String -
Available on num, provided by the NumericInputFormatting extension
thousandSeparator
specifies what symbol will be used to separate each block of 3 digits, e.g. ThousandSeparator.Comma will format a million as 1,000,000shorteningPolicy
is used to round values using K for thousands, M for millions and B for billions ShorteningPolicy.NoShortening displays a value of 1234456789.34 as 1,234,456,789.34 but ShorteningPolicy.RoundToThousands displays the same value as 1,234,456KmantissaLength
specifies how many digits will be added after a period signleadingSymbol
any symbol (except for the ones that contain digits) the will be added in front of the resulting string. E.g. $ or € some of the signs are available via constants like CurrencySymbols.EURO_SIGN but you can basically add any string instead of it. The main rule is that the string must not contain digits, periods, commas and dashestrailingSymbol
is the same as leading but this symbol will be added at the end of your resulting string like 1,250€ instead of €1,250useSymbolPadding
adds a space between the number and trailing / leading symbols like 1,250€ -> 1,250 € or €1,250€ -> € 1,250