S360fMenuItem constructor

const S360fMenuItem({
  1. Key? key,
  2. String? label,
  3. VoidCallback? onPressed,
  4. IconData? icon,
  5. bool isDisable = false,
  6. bool isExpanded = true,
})

Implementation

const S360fMenuItem({
  super.key,
  this.label,
  this.onPressed,
  this.icon,
  this.isDisable = false,
  this.isExpanded = true,
});