Closed
Description
Have you checked for an existing issue?
- I have searched the existing issues
Flutter Quill Version
11.4.1
Steps to Reproduce
QuillEditor(
focusNode: _editorFocusNode,
scrollController: _editorScrollController,
controller: _controller,
config: QuillEditorConfig(
placeholder: 'Start writing your notes...',
padding: const EdgeInsets.all(6),
customStyles: DefaultStyles(
paragraph: DefaultTextBlockStyle(TextStyle(
fontSize: 20,
height: 2,
color: Colors.black,
), HorizontalSpacing.zero, VerticalSpacing.zero, VerticalSpacing(50, 50), BoxDecoration(),),
),
),
)
Set paragraph lineSpace to VerticalSpacing(50, 50)
but not increase space between text lines.

Expected results
Increase space between text lines.
Actual results
No effect
Additional Context
No response