hasPlaintextSelectionMatch method

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

Implementation

bool hasPlaintextSelectionMatch(int selectionStart, int selectionEnd) {
  return this.isPlaintext && isSelected(selectionStart, selectionEnd);
}