AutoCompleteModel constructor
AutoCompleteModel({
- List<
Predictions> ? predictions, - String? status,
Implementation
AutoCompleteModel({List<Predictions>? predictions, String? status}) {
_predictions = predictions;
_status = status;
}