WebSearchLocation constructor

const WebSearchLocation({
  1. String? city,
  2. String? region,
  3. String? country,
  4. String? timezone,
  5. String? type = 'approximate',
})

Implementation

const WebSearchLocation({
  this.city,
  this.region,
  this.country,
  this.timezone,
  this.type = 'approximate',
});