TopMenu constructor

TopMenu({
  1. Key? key,
  2. required Widget pageContent,
  3. void onNotificationClicked()?,
  4. ScrollController? scrollController,
  5. bool? topSpace,
  6. Color? backgroundColor,
  7. bool isScrollable = true,
  8. bool bottomDivider = false,
  9. required RxBool showTopMenuShadow,
})

Implementation

TopMenu(
    {super.key,
    required this.pageContent,
    this.onNotificationClicked,
    this.scrollController,
    this.topSpace,
    this.backgroundColor,
    this.isScrollable = true,
    this.bottomDivider = false,
    required this.showTopMenuShadow,
    });