MaterialQueryField constructor

const MaterialQueryField({
  1. Key? key,
  2. ThemeData? theme,
  3. List<Widget>? leading,
  4. List<Widget>? trailing,
  5. Decoration? decoration,
  6. EdgeInsets? padding,
  7. EdgeInsets? margin,
  8. FocusNode? focusNode,
  9. TextEditingController? textController,
  10. VoidCallback? onDismissed,
  11. ValueChanged<String>? onChanged,
  12. String? hintText,
  13. TextStyle? style,
  14. TextStyle? hintStyle,
  15. InputDecoration? inputDecoration,
  16. QueryFieldSemanticsLocalizations? semanticLocalization,
  17. QueryFieldStringsLocalizations? strings,
  18. Icon? dismissIcon,
  19. Icon? clearIcon,
})

Implementation

const MaterialQueryField(
    {Key? key,
    this.theme,
    List<Widget>? leading,
    List<Widget>? trailing,
    Decoration? decoration,
    EdgeInsets? padding,
    EdgeInsets? margin,
    this.focusNode,
    this.textController,
    this.onDismissed,
    this.onChanged,
    this.hintText,
    this.style,
    this.hintStyle,
    this.inputDecoration,
    this.semanticLocalization,
    this.strings,
    this.dismissIcon,
    this.clearIcon})
    : super(
          key: key,
          leading: leading,
          trailing: trailing,
          decoration: decoration,
          padding: padding,
          margin: margin);