toggle method
Implementation
void toggle(BuildContext context) {
if (hideSuggestionOverlay) {
return;
}
if (_status != ControllerStatus.closed) {
this.close();
} else {
this.open();
}
}
void toggle(BuildContext context) {
if (hideSuggestionOverlay) {
return;
}
if (_status != ControllerStatus.closed) {
this.close();
} else {
this.open();
}
}