verticalLineRight property

bool get verticalLineRight

Determines if there's a vertical line on the right side of the matrix.

This getter lazily evaluates and caches the result of checking for a vertical line on the right side of the matrix. It uses the _hasVerticalLineRight method to perform the actual check.

Returns: A boolean value:

  • true if a vertical line is present on the right side
  • false otherwise

The result is cached after the first call for efficiency in subsequent accesses.

Implementation

bool get verticalLineRight {
  _verticalLineRight ??= _hasVerticalLineRight(this);
  return _verticalLineRight!;
}