SuggestionStyle constructor
SuggestionStyle({
- double elevation = 6,
- required ShapeBorder shape,
- required Color backgroundColor,
- required Color focusColor,
- required Color hoverColor,
- required Color splashColor,
- required TextStyle textStyle,
- Color? selectedBackgroundColor,
- Color? borderColor,
- double? borderWidth,
- double? itemHeight,
- double? iconSize,
- Color? methodIconColor,
- Color? propertyIconColor,
- Color? classIconColor,
- Color? variableIconColor,
- Color? keywordIconColor,
- TextStyle? labelTextStyle,
- TextStyle? detailTextStyle,
- TextStyle? typeTextStyle,
Creates a SuggestionStyle with the specified options.
Implementation
SuggestionStyle({
super.elevation,
required super.shape,
required super.backgroundColor,
required super.focusColor,
required super.hoverColor,
required super.splashColor,
required super.textStyle,
this.selectedBackgroundColor,
this.borderColor,
this.borderWidth,
this.itemHeight,
this.iconSize,
this.methodIconColor,
this.propertyIconColor,
this.classIconColor,
this.variableIconColor,
this.keywordIconColor,
this.labelTextStyle,
this.detailTextStyle,
this.typeTextStyle,
});