AdeptTextAutoCompleteTheme constructor

AdeptTextAutoCompleteTheme({
  1. TextStyle? labelTextStyle,
  2. TextStyle? hintTextStyle,
  3. TextStyle? valueTextStyle,
  4. EdgeInsets labelPadding = const EdgeInsets.only(bottom: 5),
  5. EdgeInsets fieldPadding = const EdgeInsets.only(left: 10, right: 10, top: 10),
  6. InputDecoration? inputDecoration,
  7. double height = 45,
})

Constructor allows you to define styling and value properties.

Implementation

AdeptTextAutoCompleteTheme({
  super.labelTextStyle,
  super.hintTextStyle,
  super.valueTextStyle,
  super.labelPadding,
  super.fieldPadding,
  super.inputDecoration,
  super.height,
});