callOnDetectionTyped method

void callOnDetectionTyped()

Implementation

void callOnDetectionTyped() {
  final typingRange = typingDetection()?.range;
  if (typingRange != null) {
    onDetectionTyped!(typingRange.textInside(sourceText));
  }
}