collapse method

void collapse()

Collapse the list this controller is connected to

Implementation

void collapse() {
  value = ExpandableSliverListStatus.collapsed;

  // If there is a timer going on currently, we'll cancel it
  _timer?.cancel();
  _timer = _collapseTimer();
}