toggleExpand method

void toggleExpand()

Implementation

void toggleExpand() {
  if (this._histories!.isEmpty) {
    this._forceHide();
    return;
  }

  this._clearFilter();
  this.listOpen.sink.add(!_isShow);
  this.listShow.add(!_isShow);
  _isShow = !_isShow;
}