SuggestionStyle constructor

SuggestionStyle({
  1. double elevation = 6,
  2. required ShapeBorder shape,
  3. required Color backgroundColor,
  4. required Color focusColor,
  5. required Color hoverColor,
  6. required Color splashColor,
  7. required TextStyle textStyle,
  8. Color? selectedBackgroundColor,
  9. Color? borderColor,
  10. double? borderWidth,
  11. double? itemHeight,
  12. double? iconSize,
  13. Color? methodIconColor,
  14. Color? propertyIconColor,
  15. Color? classIconColor,
  16. Color? variableIconColor,
  17. Color? keywordIconColor,
  18. TextStyle? labelTextStyle,
  19. TextStyle? detailTextStyle,
  20. 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,
});