SuggestionStyle constructor

const SuggestionStyle({
  1. Offset offset = const Offset(0, 20),
  2. bool showOnTap = true,
  3. double elevation = 8.0,
  4. Color? backgroundColor,
  5. Color? color,
  6. double maxHeight = 260,
})

Class that defines the design for suggestions.

サジェスト用のデザインを定義するクラス。

Implementation

const SuggestionStyle({
  this.offset = const Offset(0, 20),
  this.showOnTap = true,
  this.elevation = 8.0,
  this.backgroundColor,
  this.color,
  this.maxHeight = 260,
});