initState method

  1. @override
void initState ()

Affects the expansion of each shuttles list of stops

Implementation

@override

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