AutoCompleteTheme constructor

const AutoCompleteTheme({
  1. BoxConstraints? popoverConstraints,
  2. PopoverConstraint? popoverWidthConstraint,
  3. AlignmentDirectional? popoverAnchorAlignment,
  4. AlignmentDirectional? popoverAlignment,
  5. AutoCompleteMode? mode,
})

Creates an AutoCompleteTheme.

All parameters are optional and will use framework defaults when null.

Implementation

const AutoCompleteTheme({
  this.popoverConstraints,
  this.popoverWidthConstraint,
  this.popoverAnchorAlignment,
  this.popoverAlignment,
  this.mode,
});