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<int?>' instead of 'Attribute<int>'. This change allows for custom dropdown attributes with a nullable level.

Co-authored-by: Sobhan Moradi <sobhan.moradi@getflip.com>
pull/1634/head
Sobhan Moradi 1 year ago committed by GitHub
parent 97f12c71d5
commit 67122a3282
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      lib/src/models/config/toolbar/buttons/select_header_style_dropdown_button_configurations.dart

@ -49,7 +49,7 @@ class QuillToolbarSelectHeaderStyleDropdownButtonOptions
/// Attribute.header,
/// ]
/// ```
final List<Attribute<int>>? attributes;
final List<Attribute<int?>>? attributes;
QuillToolbarSelectHeaderStyleDropdownButtonOptions copyWith({
ValueChanged<String>? onSelected,

Loading…
Cancel
Save