plugintestXItem constructor
const
plugintestXItem({})
Implementation
const plugintestXItem({
this.label,
this.icon,
this.iconWidget,
this.onTap,
this.onLongPress,
this.onSecondaryTap,
}) : assert(
(icon != null || iconWidget != null) &&
(icon == null || iconWidget == null),
'You can create SidebarXItem with IconData? icon or with Widget? iconWidget',
);