HtmlEditorField constructor

const HtmlEditorField({
  1. Key? key,
  2. required HtmlEditorController controller,
  3. ResizeMode resizeMode = ResizeMode.resizeToParent,
  4. ThemeData? themeData,
  5. InAppWebViewSettings? inAppWebViewSettings,
  6. int? maximumFileSize,
  7. bool? spellCheck,
  8. List<String>? customOptions,
  9. VoidCallback? onInit,
  10. VoidCallback? onFocus,
  11. VoidCallback? onBlur,
  12. ValueChanged<HtmlEditorFile>? onImageUpload,
  13. ValueChanged<HtmlEditorUploadError>? onImageUploadError,
  14. ValueChanged<int>? onKeyup,
  15. ValueChanged<int>? onKeydown,
  16. String? hint,
  17. VoidCallback? onMouseUp,
  18. VoidCallback? onMouseDown,
})

Implementation

const HtmlEditorField({
  super.key,
  required this.controller,
  this.resizeMode = ResizeMode.resizeToParent,
  this.themeData,
  this.inAppWebViewSettings,
  this.maximumFileSize,
  this.spellCheck,
  this.customOptions,
  this.onInit,
  this.onFocus,
  this.onBlur,
  this.onImageUpload,
  this.onImageUploadError,
  this.onKeyup,
  this.onKeydown,
  this.hint,
  this.onMouseUp,
  this.onMouseDown,
});