HtmlEditor constructor

const HtmlEditor({
  1. dynamic key,
  2. dynamic editorState,
  3. ExportCallback? onSave,
  4. ExportCallback? onChanged,
  5. dynamic onCancel()?,
  6. dynamic textStyleConfiguration,
  7. bool autoFocus = true,
  8. bool editable = false,
  9. bool shrinkWrap = false,
  10. dynamic editorPadding = const EdgeInsets.all(10),
  11. dynamic header,
  12. dynamic footer,
})

Implementation

const HtmlEditor({
  super.key,
  this.editorState,
  this.onSave,
  this.onChanged,
  this.onCancel,
  this.textStyleConfiguration,
  this.autoFocus = true,
  this.editable = false,
  this.shrinkWrap = false,
  this.editorPadding = const EdgeInsets.all(10),
  this.header,
  this.footer,
});