HistoryButton constructor

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

Implementation

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