SuggestionsBoxDecoration constructor

const SuggestionsBoxDecoration({
  1. double elevation = 4.0,
  2. Color? color,
  3. ShapeBorder? shape,
  4. bool hasScrollbar = true,
  5. BorderRadius? borderRadius,
  6. Color shadowColor = Colors.black,
  7. BoxConstraints? constraints,
  8. Clip clipBehavior = Clip.none,
  9. double offsetX = 0.0,
  10. bool scrollbarThumbAlwaysVisible = false,
  11. bool scrollbarTrackAlwaysVisible = false,
})

Creates a SuggestionsBoxDecoration

Implementation

const SuggestionsBoxDecoration({
  this.elevation = 4.0,
  this.color,
  this.shape,
  this.hasScrollbar = true,
  this.borderRadius,
  this.shadowColor = Colors.black,
  this.constraints,
  this.clipBehavior = Clip.none,
  this.offsetX = 0.0,
  this.scrollbarThumbAlwaysVisible = false,
  this.scrollbarTrackAlwaysVisible = false,
});