SuggestionDecoration constructor

SuggestionDecoration({
  1. EdgeInsetsGeometry padding = EdgeInsets.zero,
  2. Color? color,
  3. Border? border,
  4. BorderRadiusGeometry? borderRadius,
  5. List<BoxShadow>? boxShadow,
  6. Gradient? gradient,
  7. double? width,
  8. double? elevation,
  9. Color? hoverColor,
  10. Color? shadowColor,
  11. Color? selectionColor,
  12. BoxShape shape = BoxShape.rectangle,
})

Implementation

SuggestionDecoration({
  this.padding = EdgeInsets.zero,
  Color? color,
  Border? border,
  BorderRadiusGeometry? borderRadius,
  List<BoxShadow>? boxShadow,
  Gradient? gradient,
  this.width,
  this.elevation,
  this.hoverColor,
  this.shadowColor,
  this.selectionColor,
  BoxShape shape = BoxShape.rectangle,
}) : super(
          color: color,
          border: border,
          borderRadius: borderRadius,
          boxShadow: boxShadow,
          gradient: gradient,
          shape: shape);