ImageButton constructor

const ImageButton({
  1. required IconData icon,
  2. required QuillController controller,
  3. double iconSize = kDefaultIconSize,
  4. OnImagePickCallback? onImagePickCallback,
  5. Color? fillColor,
  6. FilePickImpl? filePickImpl,
  7. WebImagePickImpl? webImagePickImpl,
  8. MediaPickSettingSelector? mediaPickSettingSelector,
  9. QuillIconTheme? iconTheme,
  10. QuillDialogTheme? dialogTheme,
  11. Key? key,
})

Implementation

const ImageButton({
  required this.icon,
  required this.controller,
  this.iconSize = kDefaultIconSize,
  this.onImagePickCallback,
  this.fillColor,
  this.filePickImpl,
  this.webImagePickImpl,
  this.mediaPickSettingSelector,
  this.iconTheme,
  this.dialogTheme,
  Key? key,
}) : super(key: key);