CupertinoPullDownMenu constructor

CupertinoPullDownMenu({
  1. required WidgetListBuilder actions,
  2. Color? backgroundColor,
  3. double? elevation,
  4. double width = _kToolbarDefaultWidth,
})

Implementation

CupertinoPullDownMenu({
  required this.actions,
  this.backgroundColor,
  this.elevation,
  this.width = _kToolbarDefaultWidth,
})  : assert(actions != null),
      super(actions: actions);