AutoCompleteModel constructor

AutoCompleteModel({
  1. List<Predictions>? predictions,
  2. String? status,
})

Implementation

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