UpRichTextEditor constructor

const UpRichTextEditor({
  1. Key? key,
  2. required UpRichTextEditorController controller,
  3. required String label,
  4. String? initialValue = "",
  5. bool readOnly = false,
})

Implementation

const UpRichTextEditor({
  super.key,
  required this.controller,
  required this.label,
  this.initialValue = "",
  this.readOnly = false,
});