ClearFormatButton constructor

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

Implementation

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