QuillDropdownButton<T> constructor

const QuillDropdownButton<T>({
  1. required Widget child,
  2. required T initialValue,
  3. required List<PopupMenuEntry<T>> items,
  4. required ValueChanged<T> onSelected,
  5. double height = 40,
  6. Color? fillColor,
  7. double hoverElevation = 1,
  8. double highlightElevation = 1,
  9. 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);