TekioMenuData constructor
TekioMenuData({
Implementation
TekioMenuData({
required List<TekioMenuButtonData> menuListButtons,
this.menuKey,
}) : menuListButtons = menuListButtons.sorted(
(a, b) => (a.order ?? 0).compareTo((b.order ?? 0)),
);