SearchTextField constructor

const SearchTextField({
  1. required TextEditingController searchController,
  2. required dynamic getPlaces(
    1. String apiKey,
    2. String keyword
    ),
  3. required String apiKey,
  4. required dynamic addressLabelState,
  5. required Language mapLanguage,
  6. Key? key,
})

Implementation

const SearchTextField({
  required this.searchController,
  required this.getPlaces,
  required this.apiKey,
  required this.addressLabelState,
  required this.mapLanguage,
  Key? key,
})
    : super(key: key);