formatNumber function
Implementation
String? formatNumber(dynamic number, {bool showComma = true, int decimals = 2, bool fixedDecimal = true}) {
return NUIStringUtil.formatNumber(number, showComma: showComma, decimals: decimals, fixedDecimal: fixedDecimal);
}