initState method

  1. @override
void initState ()

Affects the expansion of each bus's list of stops

Implementation

@override

/// Affects the expansion of each bus's list of stops
void initState() {
  super.initState();
  _tabController = new TabController(vsync: this, length: busTabs.length);
  _tabController.addListener(() {
    isExpandedList.fillRange(0, 100, false);
  });
  isExpandedList.fillRange(0, 100, false);
}