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. VoidCallback? afterButtonPressed,
  9. Map<ToolbarButtons, String> tooltips = const <ToolbarButtons, String>{},
  10. EdgeInsetsGeometry? padding,
  11. Key? key,
})

Implementation

const SelectAlignmentButton({
  required this.controller,
  this.iconSize = kDefaultIconSize,
  this.iconTheme,
  this.showLeftAlignment,
  this.showCenterAlignment,
  this.showRightAlignment,
  this.showJustifyAlignment,
  this.afterButtonPressed,
  this.tooltips = const <ToolbarButtons, String>{},
  this.padding,
  Key? key,
}) : super(key: key);