ZDropdownButton<T> constructor
const
ZDropdownButton<T> ({
- Key? key,
- double height = 40,
- Color? fillColor,
- double hoverElevation = 1,
- double highlightElevation = 1,
- required Widget child,
- required T initialValue,
- required List<
PopupMenuEntry< items,T> > - required ValueChanged<
T> ? onSelected,
Implementation
const ZDropdownButton({
Key? key,
this.height = 40,
this.fillColor,
this.hoverElevation = 1,
this.highlightElevation = 1,
required this.child,
required this.initialValue,
required this.items,
required this.onSelected,
}) : super(key: key);