PlaceAutocompleteStructuredFormat constructor

const PlaceAutocompleteStructuredFormat({
  1. required String mainText,
  2. required List<PlaceAutocompleteMatchedSubstring> mainTextMatchedSubstrings,
  3. String? secondaryText,
  4. List<PlaceAutocompleteMatchedSubstring>? secondaryTextMatchedSubstrings,
})

Implementation

const PlaceAutocompleteStructuredFormat({
  required this.mainText,
  required this.mainTextMatchedSubstrings,
  this.secondaryText,
  this.secondaryTextMatchedSubstrings,
});