PendartEditor constructor

const PendartEditor({
  1. Key? key,
  2. String initialText = '',
  3. dynamic onTextChanged(
    1. String
    )?,
  4. dynamic onCheckboxChanged(
    1. int,
    2. bool
    )?,
  5. double height = 400,
  6. double? width,
  7. bool enableCheckboxes = true,
  8. ThemeData? theme,
})

Implementation

const PendartEditor({
  super.key,
  this.initialText = '',
  this.onTextChanged,
  this.onCheckboxChanged,
  this.height = 400,
  this.width,
  this.enableCheckboxes = true,
  this.theme,
});