clearSelection method

void clearSelection()

Implementation

void clearSelection() {
  if (!mounted) return;

  setState(() {
    widget.selectedValue = null;
  });
  _controller.text = '';
  widget.selectedText = '';
}