SuggestionConfiguration constructor

const SuggestionConfiguration({
  1. required Widget title,
  2. Widget? subtitle,
  3. EdgeInsetsGeometry contentPadding = const EdgeInsets.symmetric(horizontal: 16.0),
  4. bool dense = false,
  5. bool isThreeLine = false,
  6. Widget? leading,
  7. Widget? additionWidget,
  8. Color? splashColor,
  9. BorderRadius splashRadius = BorderRadius.zero,
})

Implementation

const SuggestionConfiguration({
  required this.title,
  this.subtitle,
  this.contentPadding = const EdgeInsets.symmetric(horizontal: 16.0),
  this.dense = false,
  this.isThreeLine = false,
  this.leading,
  this.additionWidget,
  this.splashColor,
  this.splashRadius = BorderRadius.zero,
});