Placemark constructor

Placemark({
  1. String? name,
  2. String? street,
  3. String? isoCountryCode,
  4. String? country,
  5. String? postalCode,
  6. String? administrativeArea,
  7. String? subAdministrativeArea,
  8. String? locality,
  9. String? subLocality,
  10. String? thoroughfare,
  11. String? subThoroughfare,
})

Constructs an instance with the given values for testing. Placemark instances constructed this way won't actually reflect any real information from the platform, just whatever was passed in at construction time.

Implementation

Placemark({
  this.name,
  this.street,
  this.isoCountryCode,
  this.country,
  this.postalCode,
  this.administrativeArea,
  this.subAdministrativeArea,
  this.locality,
  this.subLocality,
  this.thoroughfare,
  this.subThoroughfare,
});