thousandSeparator property

String thousandSeparator

Thousand separator. e.g. 1,000,000 (',') or 1.000.000 ('.'). It can be set to any desired String. It defaults to ',' for SymbolSide.left and to '.' for SymbolSide.right.

Implementation

String get thousandSeparator =>
    _thousandSeparator ?? (symbolSide == SymbolSide.left ? ',' : '.');