PlexRichTextEditor constructor

const PlexRichTextEditor({
  1. Key? key,
  2. String? initialValue,
  3. PlexRichTextFormat outputFormat = PlexRichTextFormat.html,
  4. void onChanged(
    1. String value
    )?,
  5. String? placeholder,
  6. bool readOnly = false,
  7. double minHeight = 200.0,
})

Implementation

const PlexRichTextEditor({
  super.key,
  this.initialValue,
  this.outputFormat = PlexRichTextFormat.html,
  this.onChanged,
  this.placeholder,
  this.readOnly = false,
  this.minHeight = 200.0,
});