Home constructor

const Home({
  1. Key? key,
  2. required Footer footer,
  3. required AppAttributes appAttributes,
  4. required AnimationController controller,
  5. required GlobalKey<ScaffoldState> scaffoldKey,
  6. required StatefulNavigationShell navigationShell,
  7. required void handleChangedPageIndex(
    1. int value
    ),
})

Implementation

const Home({
  super.key,
  required this.footer,
  required this.appAttributes,
  required this.controller,
  required this.scaffoldKey,
  required this.navigationShell,
  required this.handleChangedPageIndex,
});