PullDownMenu constructor

const PullDownMenu({
  1. Key? key,
  2. required List<PullDownMenuEntry> items,
  3. PullDownMenuRouteTheme? routeTheme,
})

Creates a pull-down menu.

Implementation

const PullDownMenu({
  super.key,
  required this.items,
  this.routeTheme,
});