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