LinkStyleButton constructor

const LinkStyleButton({
  1. required QuillController controller,
  2. double iconSize = kDefaultIconSize,
  3. IconData? icon,
  4. QuillIconTheme? iconTheme,
  5. QuillDialogTheme? dialogTheme,
  6. VoidCallback? afterButtonPressed,
  7. String? tooltip,
  8. Key? key,
})

Implementation

const LinkStyleButton({
  required this.controller,
  this.iconSize = kDefaultIconSize,
  this.icon,
  this.iconTheme,
  this.dialogTheme,
  this.afterButtonPressed,
  this.tooltip,
  Key? key,
}) : super(key: key);