openDropdown method

dynamic openDropdown()

Implementation

openDropdown() {
  isOpen = true;
  this._overlayEntry = this._createOverlayEntry();
  Overlay.of(inputKey.currentContext!)!.insert(this._overlayEntry);
  rotationController.forward();
}