HtmlEditor constructor

HtmlEditor({
  1. Key? key,
  2. required HtmlEditorController controller,
  3. Callbacks? callbacks,
  4. String? hint,
  5. String? initialText,
  6. HtmlEditorOptions options = const HtmlEditorOptions(),
  7. List<Plugins> plugins = const [],
  8. List<Toolbar> toolbar = const [],
})

Implementation

HtmlEditor({
  Key? key,
  required this.controller,
  this.callbacks,
  this.hint,
  this.initialText,
  this.options = const HtmlEditorOptions(),
  this.plugins = const [],
  this.toolbar = const [],
}) : super(key: key);