expand method

void expand()

Expand the list this controller is connected to

Implementation

void expand() {
  value = ExpandableSliverListStatus.expanded;

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