clearChips method

void clearChips()

Implementation

void clearChips() {
  setState(() {
    _chipsText.clear();
    _controller.clear();
    widget.onChipsCleared?.call();
  });
}