Number
num - Formatting & Currency
Functional utilities for complex list mapping, efficient sorting by property (selector), chunking for pagination, and creating shuffled copies.
Was this page helpful?
βI
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
π Flutter_Extend Version 0.3.0 is now live! See our changelog for details.
Functional utilities for complex list mapping, efficient sorting by property (selector), chunking for pagination, and creating shuffled copies.
Show Parameters
null to display no symbol.character used to separate thousands.character used to separate the whole number from the decimals.final euroAmount = 9876.5;
print(euroAmount.toCurrency(
currencySymbol: 'β¬',
thousandsSeparator: '.',
decimalSeparator: ',',
currencyDirection: CurrencyDirection.right,
));
// 9.876,50 β¬
Show Parameters
print(1000000000.toAbbreviated(currencySymbol: 'USD')); // USD 1.0B
Was this page helpful?
