SelectHeaderStyleButton constructor

const SelectHeaderStyleButton({
  1. required QuillController controller,
  2. Axis axis = Axis.horizontal,
  3. double iconSize = kDefaultIconSize,
  4. QuillIconTheme? iconTheme,
  5. List<Attribute> attributes = const [Attribute.header, Attribute.h1, Attribute.h2, Attribute.h3],
  6. VoidCallback? afterButtonPressed,
  7. String? tooltip,
  8. Key? key,
})

Implementation

const SelectHeaderStyleButton({
  required this.controller,
  this.axis = Axis.horizontal,
  this.iconSize = kDefaultIconSize,
  this.iconTheme,
  this.attributes = const [
    Attribute.header,
    Attribute.h1,
    Attribute.h2,
    Attribute.h3,
  ],
  this.afterButtonPressed,
  this.tooltip,
  Key? key,
}) : super(key: key);