FSMenuItem constructor

const FSMenuItem({
  1. Key? key,
  2. Text? text,
  3. Icon? icon,
  4. Function? onTap,
  5. Gradient? gradient,
})

Implementation

const FSMenuItem({
  Key? key,
  this.text,
  this.icon,
  this.onTap,
  this.gradient,
}) : super(key: key);