diff --git a/lib/src/models/config/toolbar/buttons/dropdown_header_style.dart b/lib/src/models/config/toolbar/buttons/dropdown_header_style.dart index 5936c4f8..7bdb201f 100644 --- a/lib/src/models/config/toolbar/buttons/dropdown_header_style.dart +++ b/lib/src/models/config/toolbar/buttons/dropdown_header_style.dart @@ -37,7 +37,6 @@ class QuillToolbarSelectHeaderStyleDropdownButtonOptions this.padding, this.style, this.width, - this.initialValue, this.labelOverflow = TextOverflow.visible, this.itemHeight, this.itemPadding, @@ -55,7 +54,6 @@ class QuillToolbarSelectHeaderStyleDropdownButtonOptions final EdgeInsetsGeometry? padding; final TextStyle? style; final double? width; - final String? initialValue; final TextOverflow labelOverflow; final double? itemHeight; final EdgeInsets? itemPadding; @@ -72,7 +70,6 @@ class QuillToolbarSelectHeaderStyleDropdownButtonOptions EdgeInsetsGeometry? padding, TextStyle? style, double? width, - String? initialValue, TextOverflow? labelOverflow, bool? renderFontFamilies, bool? overrideTooltipByFontFamily, @@ -99,7 +96,6 @@ class QuillToolbarSelectHeaderStyleDropdownButtonOptions padding: padding ?? this.padding, style: style ?? this.style, width: width ?? this.width, - initialValue: initialValue ?? this.initialValue, labelOverflow: labelOverflow ?? this.labelOverflow, itemHeight: itemHeight ?? this.itemHeight, itemPadding: itemPadding ?? this.itemPadding,