Predictions constructor

Predictions({
  1. String description = '',
  2. String? placeId,
  3. List<String>? types,
})

Implementation

Predictions({String description = '', String? placeId, List<String>? types}) {
  _description = description;
  _placeId = placeId;
  _types = types;
}