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.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,

Loading…
Cancel
Save