SentryGeo constructor

SentryGeo({
  1. String? city,
  2. String? countryCode,
  3. String? region,
  4. String? subregion,
  5. String? subdivision,
})

Implementation

SentryGeo({
  this.city,
  this.countryCode,
  this.region,
  this.subregion,
  this.subdivision,
});