SideBarDrawerComponent constructor

SideBarDrawerComponent({
  1. required bool enableToolbar,
  2. Color? primaryColor,
  3. Color? backgroundColor,
  4. String? titleToolbar,
  5. String? subtitleToolbar,
  6. String? labelToolbar,
  7. String? profileImageUrl,
  8. required List<ItemMenuSideBarData> itemsMenu,
  9. required dynamic onPressedItemMenu(
    1. String id
    ),
  10. Key? key,
})

Implementation

SideBarDrawerComponent(
    {required this.enableToolbar,
    this.primaryColor,
    this.backgroundColor,
    this.titleToolbar,
    this.subtitleToolbar,
    this.labelToolbar,
    this.profileImageUrl,
    required this.itemsMenu,
    required this.onPressedItemMenu,
    super.key});