overviewRulerLane property

OverviewRulerLane? get overviewRulerLane

The position in the overview ruler where the decoration should be rendered.

Implementation

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

Implementation

set overviewRulerLane(_i3.OverviewRulerLane? value) {
  _i5.setProperty(
    this,
    'overviewRulerLane',
    value?.name ?? _i6.undefined,
  );
}