predictions property

List<AutocompletePrediction?>? get predictions

Implementation

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

Implementation

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