AppBarPlacesAutoCompleteTextField constructor

const AppBarPlacesAutoCompleteTextField({
  1. Key? key,
  2. required FocusNode? focusNode,
  3. required TextEditingController? textController,
  4. required String hint,
})

Implementation

const AppBarPlacesAutoCompleteTextField(
    {Key? key,
    required this.focusNode,
    required this.textController,
    required this.hint})
    : super(key: key);