CNPullDownMenuSubmenu constructor

const CNPullDownMenuSubmenu({
  1. required String title,
  2. required List<CNPullDownMenuEntry> items,
  3. CNSymbol? icon,
  4. String? subtitle,
})

Creates a submenu with its own items.

Implementation

const CNPullDownMenuSubmenu({
  required this.title,
  required this.items,
  this.icon,
  this.subtitle,
});