HtmlEditor constructor

HtmlEditor({
  1. Key? key,
  2. required HtmlEditorController controller,
  3. Callbacks? callbacks,
  4. HtmlEditorOptions htmlEditorOptions = const HtmlEditorOptions(),
  5. HtmlToolbarOptions htmlToolbarOptions = const HtmlToolbarOptions(),
  6. OtherOptions otherOptions = const OtherOptions(),
  7. List<Plugins> plugins = const [],
})

Implementation

HtmlEditor({
  Key? key,
  required this.controller,
  this.callbacks,
  this.htmlEditorOptions = const HtmlEditorOptions(),
  this.htmlToolbarOptions = const HtmlToolbarOptions(),
  this.otherOptions = const OtherOptions(),
  this.plugins = const [],
}) : super(key: key);