coversSeparators property

bool get coversSeparators

Determines whether or not the #background, if there is one, is in front of or behind the separators.

The default value is false -- any background is drawn behind any separator lines.

Implementation

_i2.bool get coversSeparators => _i4.getProperty(
      this,
      'coversSeparators',
    );
set coversSeparators (bool value)

Implementation

set coversSeparators(_i2.bool value) {
  _i4.setProperty(
    this,
    'coversSeparators',
    value,
  );
}