Remove `initialValue`

pull/1575/head
Aleksei 1 year ago
parent fd2a941e8c
commit a2cc5d2c7b
  1. 4
      lib/src/models/config/toolbar/buttons/dropdown_header_style.dart

@ -37,7 +37,6 @@ class QuillToolbarSelectHeaderStyleDropdownButtonOptions
this.padding, this.padding,
this.style, this.style,
this.width, this.width,
this.initialValue,
this.labelOverflow = TextOverflow.visible, this.labelOverflow = TextOverflow.visible,
this.itemHeight, this.itemHeight,
this.itemPadding, this.itemPadding,
@ -55,7 +54,6 @@ class QuillToolbarSelectHeaderStyleDropdownButtonOptions
final EdgeInsetsGeometry? padding; final EdgeInsetsGeometry? padding;
final TextStyle? style; final TextStyle? style;
final double? width; final double? width;
final String? initialValue;
final TextOverflow labelOverflow; final TextOverflow labelOverflow;
final double? itemHeight; final double? itemHeight;
final EdgeInsets? itemPadding; final EdgeInsets? itemPadding;
@ -72,7 +70,6 @@ class QuillToolbarSelectHeaderStyleDropdownButtonOptions
EdgeInsetsGeometry? padding, EdgeInsetsGeometry? padding,
TextStyle? style, TextStyle? style,
double? width, double? width,
String? initialValue,
TextOverflow? labelOverflow, TextOverflow? labelOverflow,
bool? renderFontFamilies, bool? renderFontFamilies,
bool? overrideTooltipByFontFamily, bool? overrideTooltipByFontFamily,
@ -99,7 +96,6 @@ class QuillToolbarSelectHeaderStyleDropdownButtonOptions
padding: padding ?? this.padding, padding: padding ?? this.padding,
style: style ?? this.style, style: style ?? this.style,
width: width ?? this.width, width: width ?? this.width,
initialValue: initialValue ?? this.initialValue,
labelOverflow: labelOverflow ?? this.labelOverflow, labelOverflow: labelOverflow ?? this.labelOverflow,
itemHeight: itemHeight ?? this.itemHeight, itemHeight: itemHeight ?? this.itemHeight,
itemPadding: itemPadding ?? this.itemPadding, itemPadding: itemPadding ?? this.itemPadding,

Loading…
Cancel
Save