notation property

String? get notation

The formatting that should be displayed for the number, the defaults is "standard"

 "standard" plain number formatting

 "scientific" return the order-of-magnitude for formatted number.

 "engineering" return the exponent of ten when divisible by three

 "compact" string representing exponent, defaults is using the "short" form

Implementation

_i2.String? get notation => _i5.getProperty(
      this,
      'notation',
    );
set notation (String? value)

Implementation

set notation(_i2.String? value) {
  _i5.setProperty(
    this,
    'notation',
    value ?? _i4.undefined,
  );
}