HomeScreen constructor

const HomeScreen({
  1. Key? key,
  2. required List<Widget> screens,
  3. required List<BottomNavigationBarItem> bottomNavigationItems,
  4. String appBarTitle = '',
})

Implementation

const HomeScreen({
  super.key,
  required this.screens,
  required this.bottomNavigationItems,
  this.appBarTitle = '',
});