SCIMenuItem constructor

SCIMenuItem({
  1. IconData? icon,
  2. String? label,
  3. required VoidCallback onPressed,
  4. bool? withBorder,
})

Implementation

SCIMenuItem({
  this.icon,
  this.label,
  required this.onPressed,
  this.withBorder,
});