From 67122a3282e53e03454a26d071ca34fc35008869 Mon Sep 17 00:00:00 2001 From: Sobhan Moradi Date: Wed, 20 Dec 2023 11:30:34 +0100 Subject: [PATCH] Update 'attributes' list type to enable nulls in header style dropdown config. (#1631) In `select_header_style_dropdown_button_configurations.dart`, the 'attributes' list type has been modified. Now it accepts 'Attribute' instead of 'Attribute'. This change allows for custom dropdown attributes with a nullable level. Co-authored-by: Sobhan Moradi --- .../select_header_style_dropdown_button_configurations.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/models/config/toolbar/buttons/select_header_style_dropdown_button_configurations.dart b/lib/src/models/config/toolbar/buttons/select_header_style_dropdown_button_configurations.dart index 8aafcc78..ab1e2203 100644 --- a/lib/src/models/config/toolbar/buttons/select_header_style_dropdown_button_configurations.dart +++ b/lib/src/models/config/toolbar/buttons/select_header_style_dropdown_button_configurations.dart @@ -49,7 +49,7 @@ class QuillToolbarSelectHeaderStyleDropdownButtonOptions /// Attribute.header, /// ] /// ``` - final List>? attributes; + final List>? attributes; QuillToolbarSelectHeaderStyleDropdownButtonOptions copyWith({ ValueChanged? onSelected,