significantDigits property
How many significant digits should we print.
Note that if significantDigitsInUse is the default false, this will be ignored.
Implementation
int get significantDigits => _significantDigits;
Implementation
set significantDigits(int x) {
_significantDigits = x;
significantDigitsInUse = true;
}