BookRideSearchScreen constructor

const BookRideSearchScreen({
  1. Key? key,
  2. required List<String> suggestions,
  3. Color? focusedBorderColor,
  4. TextStyle? placeholderStyle,
  5. VoidCallback? onSearchIconPressed,
  6. VoidCallback? onLocationIconPressed,
  7. ValueChanged<String>? onSearchTextChanged,
})

Implementation

const BookRideSearchScreen({Key? key,
  required this.suggestions,
  this.focusedBorderColor,
  this.placeholderStyle,
  this.onSearchIconPressed,
  this.onLocationIconPressed,
  this.onSearchTextChanged,
}) : super(key: key);