toString method
String
toString({
- bool compact = false,
- bool decimal = true,
- String decimalDelimiter = '.',
- bool thousands = false,
- String thousandsDelimiter = ',',
override
Implementation
@override
String toString(
{bool compact = false,
bool decimal = true,
String decimalDelimiter = '.',
bool thousands = false,
String thousandsDelimiter = ','}) =>
format(
compact: compact,
decimal: decimal,
decimalDelimiter: decimalDelimiter,
thousands: thousands,
thousandsDelimiter: thousandsDelimiter);