show method

void show()

Implementation

void show() {
  searchAndReplaceAnimationController.forward();
  overlayKey.currentState!.searchFieldFocusNode.requestFocus();
  regenerateMatches(
    newText: textController.selection.isCollapsed
        ? searchText
        : textController.selection.textInside(textController.text),
  );
}