Menu constructor

const Menu({
  1. Key? key,
  2. required IconData icon,
  3. required String prop,
  4. Widget? transfer,
  5. String? link,
  6. bool absorbing = false,
})

Implementation

const Menu({
  super.key,
  required this.icon,
  required this.prop,
  this.transfer,
  this.link,
  this.absorbing = false,
});