togglePanel method

void togglePanel()

Implementation

void togglePanel(){
  if(!expand){
    controller.forward(from:0);
  } else {
    controller.reverse();
  }
  expand = !expand;
}