SideMenuItem constructor

SideMenuItem({
  1. String? icon,
  2. String? id,
  3. bool? isSelected,
  4. Color? selectedBtnColor,
  5. Color disabledBtnColor = Colors.transparent,
  6. Color selectedShadowColor = Colors.blueGrey,
  7. Color disabledShadowColor = Colors.transparent,
  8. BoxShape btnShape = BoxShape.circle,
})

Implementation

SideMenuItem(
    {this.icon,
    this.id,
    this.isSelected,
    this.selectedBtnColor,
    this.disabledBtnColor = Colors.transparent,
    this.selectedShadowColor = Colors.blueGrey,
    this.disabledShadowColor = Colors.transparent,
    this.btnShape = BoxShape.circle});