MenuLink constructor

const MenuLink({
  1. required String label,
  2. String? href,
  3. List<MenuLink> children = const [],
  4. bool external = false,
})

Implementation

const MenuLink({
  required this.label,
  this.href,
  this.children = const [],
  this.external = false,
});