QuillToolbarBaseButtonOptions<T, I> constructor

const QuillToolbarBaseButtonOptions<T, I>({
  1. IconData? iconData,
  2. @Deprecated('This will be removed in future releases, use iconSize instead') double globalIconSize = kDefaultIconSize,
  3. double? iconSize,
  4. double? iconButtonFactor,
  5. @Deprecated('This will be removed in future releases, use iconButtonFactor instead') double globalIconButtonFactor = kDefaultIconButtonFactor,
  6. VoidCallback? afterButtonPressed,
  7. String? tooltip,
  8. QuillIconTheme? iconTheme,
  9. QuillToolbarButtonOptionsChildBuilder<T, I>? childBuilder,
})

Implementation

const QuillToolbarBaseButtonOptions({
  this.iconData,
  @Deprecated('This will be removed in future releases, use iconSize instead')
  this.globalIconSize = kDefaultIconSize,
  this.iconSize,
  this.iconButtonFactor,
  @Deprecated(
      'This will be removed in future releases, use iconButtonFactor instead')
  this.globalIconButtonFactor = kDefaultIconButtonFactor,
  this.afterButtonPressed,
  this.tooltip,
  this.iconTheme,
  this.childBuilder,
});