textInRange method

String textInRange(
  1. String fullText
)

Implementation

String textInRange(String fullText) {
  if (!isValid) return '';
  return fullText.substring(start, end);
}