SideMenuExpansionItem constructor

const SideMenuExpansionItem({
  1. Key? key,
  2. String? title,
  3. Icon? icon,
  4. Widget? iconWidget,
  5. required List<SideMenuItem> children,
})

Implementation

const SideMenuExpansionItem({
  Key? key,
  this.title,
  this.icon,
  this.iconWidget,
  required this.children,
})  : assert(title != null || icon != null,
          'Title and icon should not be empty at the same time'),
      super();