notation property

NotationOptions? get notation

Implementation

_i3.NotationOptions? get notation => switch (_i5.getProperty(
      this,
      'notation',
    )) {
      _i2.String name => _i3.NotationOptions.values.byName(name),
      _ => null
    };
set notation (NotationOptions? value)

Implementation

set notation(_i3.NotationOptions? value) {
  _i5.setProperty(
    this,
    'notation',
    value?.name ?? _i4.undefined,
  );
}