SearchPanel constructor

const SearchPanel({
  1. Key? key,
  2. required EditorView view,
  3. required VoidCallback onClose,
  4. bool showReplace = false,
})

Implementation

const SearchPanel({
  super.key,
  required this.view,
  required this.onClose,
  this.showReplace = false,
});