SelectAlignmentButton constructor

const SelectAlignmentButton({
  1. required QuillController controller,
  2. double iconSize = kDefaultIconSize,
  3. QuillIconTheme? iconTheme,
  4. bool? showLeftAlignment,
  5. bool? showCenterAlignment,
  6. bool? showRightAlignment,
  7. bool? showJustifyAlignment,
  8. Key? key,
})

Implementation

const SelectAlignmentButton({
  required this.controller,
  this.iconSize = kDefaultIconSize,
  this.iconTheme,
  this.showLeftAlignment,
  this.showCenterAlignment,
  this.showRightAlignment,
  this.showJustifyAlignment,
  Key? key,
}) : super(key: key);