minimumSignificantDigitsStrict property
Whether minimumSignificantDigits should cause trailing 0 in fraction part.
Ex: with 2 significant digits: 0.999 => "1.0" (strict) or "1" (non-strict).
Implementation
@override
bool get minimumSignificantDigitsStrict =>
_scientific.minimumSignificantDigitsStrict;
Whether minimumSignificantDigits should cause trailing 0 in fraction part.
Ex: with 2 significant digits: 0.999 => "1.0" (strict) or "1" (non-strict).
Implementation
@override
set minimumSignificantDigitsStrict(bool value) {
_scientific.minimumSignificantDigitsStrict = value;
}