diff --git a/lib/src/controller/quill_controller.dart b/lib/src/controller/quill_controller.dart index 781a0660..57e3ed42 100644 --- a/lib/src/controller/quill_controller.dart +++ b/lib/src/controller/quill_controller.dart @@ -101,49 +101,6 @@ class QuillController extends ChangeNotifier { notifyListeners(); } - // Those are the values that the user selects and not the one - // from the current line - - /// The current font family, null to use the default one - @Deprecated('No longer used') - MapEntry? _selectedFontFamily; - - /// The current font family, null to use the default one - @Deprecated('No longer used') - MapEntry? get selectedFontFamily => _selectedFontFamily; - - @Deprecated('No longer used') - void selectFontFamily(MapEntry? newFontFamily) { - _selectedFontFamily = newFontFamily; - } - - /// The current font size, null to use the default one - @Deprecated('No longer used') - MapEntry? _selectedFontSize; - - /// The current font size, null to use the default one - @Deprecated('No longer used') - MapEntry? get selectedFontSize => _selectedFontSize; - - @Deprecated('No longer used') - void selectFontSize(MapEntry? newFontSize) { - _selectedFontSize = newFontSize; - } - - /// For the [QuillToolbarToggleStyleButton] - @Deprecated('No longer used') - final Map _selectedStyles = {}; - - /// For the [QuillToolbarToggleStyleButton] - @Deprecated('No longer used') - Map get selectedStyles => _selectedStyles; - - /// For the [QuillToolbarToggleStyleButton] - @Deprecated('No longer used') - void selectStyle(Attribute attribute, bool value) { - _selectedStyles[attribute] = value; - } - /// Tells whether to keep or reset the [toggledStyle] /// when user adds a new line. final bool keepStyleOnNewLine;