XfxScheda constructor

XfxScheda({
  1. Key? key,
  2. String title = "",
  3. bool title_Visible = true,
  4. Widget? child,
  5. bool? bottomBar_Visible = true,
  6. dynamic bottomBar_OnTap(
    1. int
    )?,
  7. int? bottomBar_CurrentIdx,
  8. required List<BottomNavigationBarItem> bottomBar_Children,
})

Implementation

XfxScheda({
  Key? key,
  this.title = "",
  this.title_Visible = true,
  this.child,
  this.bottomBar_Visible = true,
  this.bottomBar_OnTap,
  this.bottomBar_CurrentIdx,
  required this.bottomBar_Children,
}) : super(key: key);