QuillFontSizeButton constructor

const QuillFontSizeButton({
  1. required List<PopupMenuEntry<String>> items,
  2. required Map<String, String> rawItemsMap,
  3. required Attribute attribute,
  4. required QuillController controller,
  5. required ValueChanged<String> onSelected,
  6. double iconSize = 40,
  7. Color? fillColor,
  8. double hoverElevation = 1,
  9. double highlightElevation = 1,
  10. QuillIconTheme? iconTheme,
  11. VoidCallback? afterButtonPressed,
  12. Key? key,
})

Implementation

const QuillFontSizeButton({
  required this.items,
  required this.rawItemsMap,
  required this.attribute,
  required this.controller,
  required this.onSelected,
  this.iconSize = 40,
  this.fillColor,
  this.hoverElevation = 1,
  this.highlightElevation = 1,
  this.iconTheme,
  this.afterButtonPressed,
  Key? key,
}) : super(key: key);