HtmlEditor constructor

const HtmlEditor({
  1. Key? key,
  2. double? height,
  3. double? minHeight,
  4. bool expandFullHeight = false,
  5. String? hint,
  6. String? initialValue,
  7. void onChanged(
    1. String?
    )?,
  8. bool? isReadOnly,
  9. bool? enableDictation,
  10. HtmlEditorController? controller,
  11. Callbacks? callbacks,
})

Implementation

const HtmlEditor({
  Key? key,
  this.height,
  this.minHeight,
  this.expandFullHeight = false,
  this.hint,
  this.initialValue,
  this.onChanged,
  this.isReadOnly,
  this.enableDictation,
  this.controller,
  this.callbacks,
  //this.plugins = const [],
})  : assert(minHeight == null || minHeight >= 64),
      assert(height == null || height >= 64),
      super(key: key);