LocalizationItem constructor

LocalizationItem({
  1. String languageCode = 'en_us',
  2. String nearBy = 'Nearby Places',
  3. String findingPlace = 'Finding place...',
  4. String noResultsFound = 'No results found',
  5. String unnamedLocation = 'Unnamed location',
  6. String tapToSelectLocation = 'Tap to select this location',
})

Implementation

LocalizationItem({
  this.languageCode = 'en_us',
  this.nearBy = 'Nearby Places',
  this.findingPlace = 'Finding place...',
  this.noResultsFound = 'No results found',
  this.unnamedLocation = 'Unnamed location',
  this.tapToSelectLocation = 'Tap to select this location',
});