dartlangeditorflutterflutter-appsflutter-examplesflutter-packageflutter-widgetquillquill-deltaquilljsreactquillrich-textrich-text-editorwysiwygwysiwyg-editor
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
906 B
28 lines
906 B
import 'package:equatable/equatable.dart'; |
|
import 'package:flutter/foundation.dart' show immutable; |
|
|
|
import 'elements/code_block.dart'; |
|
import 'elements/list/ordered_list.dart'; |
|
import 'elements/list/unordered_list.dart'; |
|
|
|
export 'elements/code_block.dart'; |
|
export 'elements/list/ordered_list.dart'; |
|
export 'elements/list/unordered_list.dart'; |
|
|
|
@immutable |
|
class QuillEditorElementOptions extends Equatable { |
|
const QuillEditorElementOptions({ |
|
this.codeBlock = const QuillEditorCodeBlockElementOptions(), |
|
this.orderedList = const QuillEditorOrderedListElementOptions(), |
|
this.unorderedList = const QuillEditorUnOrderedListElementOptions(), |
|
}); |
|
|
|
final QuillEditorCodeBlockElementOptions codeBlock; |
|
|
|
final QuillEditorOrderedListElementOptions orderedList; |
|
final QuillEditorUnOrderedListElementOptions unorderedList; |
|
@override |
|
List<Object?> get props => [ |
|
codeBlock, |
|
]; |
|
}
|
|
|