isFullySelected method

bool isFullySelected(
  1. int selectionStart,
  2. int selectionEnd
)

Implementation

bool isFullySelected(int selectionStart, int selectionEnd) {
  return (selectionStart <= innerScopeStart && selectionEnd >= innerScopeEnd);
}