HtmlEditor constructor
      const
      HtmlEditor({ 
    
    
- Key? key,
- String? hint,
- ResizeMode resizeMode = ResizeMode.resizeToParent,
- HtmlEditorController? controller,
- InAppWebViewSettings? inAppWebViewSettings,
- bool? spellCheck,
- List<String> ? customOptions,
- Future<bool> allowUrlLoading(- Uri? uri
 
- VoidCallback? onInit,
- VoidCallback? onFocus,
- VoidCallback? onBlur,
- ValueChanged<HtmlEditorFile> ? onImageUpload,
- ValueChanged<HtmlEditorUploadError> ? onImageUploadError,
- ValueChanged<int> ? onKeyup,
- ValueChanged<int> ? onKeydown,
- VoidCallback? onMouseUp,
- VoidCallback? onMouseDown,
- ValueChanged<String> ? onChange,
- ValueChanged<String> ? onUrlPressed,
- String cssBuilder()?,
- String jsInitBuilder(- String js
 
Implementation
const HtmlEditor({
  super.key,
  this.hint,
  this.resizeMode = ResizeMode.resizeToParent,
  this.controller,
  this.inAppWebViewSettings,
  this.spellCheck,
  this.customOptions,
  this.allowUrlLoading,
  this.onInit,
  this.onFocus,
  this.onBlur,
  this.onImageUpload,
  this.onImageUploadError,
  this.onKeyup,
  this.onKeydown,
  this.onMouseUp,
  this.onMouseDown,
  this.onChange,
  this.onUrlPressed,
  this.cssBuilder,
  this.jsInitBuilder,
});