predictions property

List<AutocompletePrediction?>? predictions

Implementation

List<AutocompletePrediction?>? get predictions =>
    getProperty(this, 'predictions')?.cast<AutocompletePrediction?>();
void predictions=(List<AutocompletePrediction?>? value)

Implementation

set predictions(List<AutocompletePrediction?>? value) {
  setProperty(this, 'predictions', value);
}