toggle method

void toggle()

Implementation

void toggle(){
  this._isExpanded = !this._isExpanded;
  updateState(this._isExpanded);
}