PanelySidebarButton constructor

const PanelySidebarButton({
  1. Key? key,
  2. IconData? icon,
  3. required String title,
  4. required BasePanelyContentPage page,
  5. bool isDisabled = false,
  6. EdgeInsets padding = const EdgeInsets.symmetric(vertical: 2.5),
})

Implementation

const PanelySidebarButton({
  super.key,
  this.icon,
  required this.title,
  required this.page,
  this.isDisabled = false,
  this.padding = const EdgeInsets.symmetric(vertical: 2.5),
});