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 = const Color(0xFF000000),
  7. BoxConstraints? constraints,
  8. Clip clipBehavior = Clip.none,
  9. double offsetX = 0.0}
)

Creates a SuggestionsBoxDecoration

Implementation

const SuggestionsBoxDecoration(
    {this.elevation: 4.0,
    this.color,
    this.shape,
    this.hasScrollbar: true,
    this.borderRadius,
    this.shadowColor: const Color(0xFF000000),
    this.constraints,
    this.clipBehavior: Clip.none,
    this.offsetX: 0.0});