end property

num get end

The zero-based end line of the range to fold. The folded area ends with the line's last character. To be valid, the end must be zero or larger and smaller than the number of lines in the document.

Implementation

_i2.num get end => _i5.getProperty(
      this,
      'end',
    );
set end (num value)

Implementation

set end(_i2.num value) {
  _i5.setProperty(
    this,
    'end',
    value,
  );
}