Suggestion constructor

Suggestion(
  1. String placeId,
  2. String description, {
  3. String? mainText,
  4. String? secondaryText,
  5. List<String>? terms,
  6. List<String>? types,
})

Implementation

Suggestion(this.placeId, this.description,
    {this.mainText, this.secondaryText, this.terms, this.types});