KatEditor constructor

const KatEditor({
  1. Key? key,
  2. required KatQuillEditorController controller,
  3. IconData? icon,
  4. String? label,
  5. String? hintText,
  6. String? initialValue,
  7. double minHeight = 300,
  8. double fontSize = 14.0,
  9. ValueChanged<String>? onTextChanged,
})

Implementation

const KatEditor({
  super.key,
  required this.controller,
  this.icon,
  this.label,
  this.hintText,
  this.initialValue,
  this.minHeight = 300,
  this.fontSize = 14.0,
  this.onTextChanged,
});